Lines Matching refs:Height
161 IN UINTN Height, in BltLibGopBlt() argument
174 Height, in BltLibGopBlt()
185 Height in BltLibGopBlt()
194 Height in BltLibGopBlt()
205 Height, in BltLibGopBlt()
235 IN UINTN Height in BltLibVideoFill() argument
253 if (DestinationY + Height > mBltLibHeight) { in BltLibVideoFill()
263 if (Width == 0 || Height == 0) { in BltLibVideoFill()
312 SizeInBytes = WidthInBytes * Height; in BltLibVideoFill()
322 for (DstY = DestinationY; DstY < (Height + DestinationY); DstY++) { in BltLibVideoFill()
381 IN UINTN Height in BltLibVideoToBltBuffer() argument
391 Height, in BltLibVideoToBltBuffer()
424 IN UINTN Height, in BltLibVideoToBltBufferEx() argument
441 if (SourceY + Height > mBltLibHeight) { in BltLibVideoToBltBufferEx()
449 if (Width == 0 || Height == 0) { in BltLibVideoToBltBufferEx()
467 for (SrcY = SourceY, DstY = DestinationY; DstY < (Height + DestinationY); SrcY++, DstY++) { in BltLibVideoToBltBufferEx()
525 IN UINTN Height in BltLibBufferToVideo() argument
535 Height, in BltLibBufferToVideo()
568 IN UINTN Height, in BltLibBufferToVideoEx() argument
585 if (DestinationY + Height > mBltLibHeight) { in BltLibBufferToVideoEx()
593 if (Width == 0 || Height == 0) { in BltLibBufferToVideoEx()
608 for (SrcY = SourceY, DstY = DestinationY; SrcY < (Height + SourceY); SrcY++, DstY++) { in BltLibBufferToVideoEx()
665 IN UINTN Height in BltLibVideoToVideo() argument
677 if (SourceY + Height > mBltLibHeight) { in BltLibVideoToVideo()
685 if (DestinationY + Height > mBltLibHeight) { in BltLibVideoToVideo()
693 if (Width == 0 || Height == 0) { in BltLibVideoToVideo()
712 while (Height > 0) { in BltLibVideoToVideo()
717 Height--; in BltLibVideoToVideo()
738 OUT UINTN *Height OPTIONAL in BltLibGetSizes()
744 if (Height != NULL) { in BltLibGetSizes()
745 *Height = mBltLibHeight; in BltLibGetSizes()