Lines Matching refs:Width

160   IN  UINTN                                 Width,  in BltLibGopBlt()  argument
173 Width, in BltLibGopBlt()
184 Width, in BltLibGopBlt()
193 Width, in BltLibGopBlt()
204 Width, in BltLibGopBlt()
234 IN UINTN Width, in BltLibVideoFill() argument
258 if (DestinationX + Width > mBltLibWidthInPixels) { in BltLibVideoFill()
263 if (Width == 0 || Height == 0) { in BltLibVideoFill()
268 WidthInBytes = Width * mBltLibBytesPerPixel; in BltLibVideoFill()
307 if (UseWideFill && (DestinationX == 0) && (Width == mBltLibWidthInPixels)) { in BltLibVideoFill()
341 for (X = 1; X < Width; ) { in BltLibVideoFill()
345 MIN (X, Width - X) * mBltLibBytesPerPixel in BltLibVideoFill()
347 X = X + MIN (X, Width - X); in BltLibVideoFill()
380 IN UINTN Width, in BltLibVideoToBltBuffer() argument
390 Width, in BltLibVideoToBltBuffer()
423 IN UINTN Width, in BltLibVideoToBltBufferEx() argument
445 if (SourceX + Width > mBltLibWidthInPixels) { in BltLibVideoToBltBufferEx()
449 if (Width == 0 || Height == 0) { in BltLibVideoToBltBufferEx()
459 Delta = Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL); in BltLibVideoToBltBufferEx()
462 WidthInBytes = Width * mBltLibBytesPerPixel; in BltLibVideoToBltBufferEx()
487 for (X = 0; X < Width; X++) { in BltLibVideoToBltBufferEx()
524 IN UINTN Width, in BltLibBufferToVideo() argument
534 Width, in BltLibBufferToVideo()
567 IN UINTN Width, in BltLibBufferToVideoEx() argument
589 if (DestinationX + Width > mBltLibWidthInPixels) { in BltLibBufferToVideoEx()
593 if (Width == 0 || Height == 0) { in BltLibBufferToVideoEx()
603 Delta = Width * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL); in BltLibBufferToVideoEx()
606 WidthInBytes = Width * mBltLibBytesPerPixel; in BltLibBufferToVideoEx()
617 for (X = 0; X < Width; X++) { in BltLibBufferToVideoEx()
664 IN UINTN Width, in BltLibVideoToVideo() argument
681 if (SourceX + Width > mBltLibWidthInPixels) { in BltLibVideoToVideo()
689 if (DestinationX + Width > mBltLibWidthInPixels) { in BltLibVideoToVideo()
693 if (Width == 0 || Height == 0) { in BltLibVideoToVideo()
697 WidthInBytes = Width * mBltLibBytesPerPixel; in BltLibVideoToVideo()
737 OUT UINTN *Width, OPTIONAL in BltLibGetSizes() argument
741 if (Width != NULL) { in BltLibGetSizes()
742 *Width = mBltLibWidthInPixels; in BltLibGetSizes()