Searched defs:BltBufferSize (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DBdsConsole.c619 UINT64 BltBufferSize; local
657 BltBufferSize = MultU64x32 (DataSizePerLine, BmpHeader->PixelHeight);
658 if (BltBufferSize > (UINT32) ~0) {
706 BltBufferSize = MultU64x32 ((UINT64) BmpHeader->PixelWidth, BmpHeader->PixelHeight);
708 // Ensure the BltBufferSize * sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL) doesn't overflow
710 if (BltBufferSize > DivU64x32 ((UINTN) ~0, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL))) {
713 BltBufferSize = MultU64x32 (BltBufferSize, sizeof (EFI_GRAPHICS_OUTPUT_BLT_PIXEL));
720 *GopBltSize = (UINTN) BltBufferSize;
730 if (*GopBltSize < (UINTN) BltBufferSize) {
[all...]

Completed in 74 milliseconds