Searched refs:LineBuffer (Results 1 - 13 of 13) sorted by relevance
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/CirrusLogic5430Dxe/ |
H A D | CirrusLogic5430GraphicsOutput.c | 161 if (Private->LineBuffer) { 162 gBS->FreePool (Private->LineBuffer); 165 Private->LineBuffer = NULL; 166 Private->LineBuffer = AllocatePool (ModeData->HorizontalResolution); 167 if (Private->LineBuffer == NULL) { 316 Private->LineBuffer 325 Private->LineBuffer 332 Blt->Red = PIXEL_TO_RED_BYTE (Private->LineBuffer[X]); 333 Blt->Green = PIXEL_TO_GREEN_BYTE (Private->LineBuffer[X]); 334 Blt->Blue = PIXEL_TO_BLUE_BYTE (Private->LineBuffer[ [all...] |
H A D | CirrusLogic5430UgaDraw.c | 88 if (Private->LineBuffer) { 89 gBS->FreePool (Private->LineBuffer); 92 Private->LineBuffer = NULL; 93 Private->LineBuffer = AllocatePool (HorizontalResolution); 94 if (Private->LineBuffer == NULL) { 211 Private->LineBuffer 220 Private->LineBuffer 227 Blt->Red = (UINT8) (Private->LineBuffer[X] & 0xe0); 228 Blt->Green = (UINT8) ((Private->LineBuffer[X] & 0x1c) << 3); 229 Blt->Blue = (UINT8) ((Private->LineBuffer[ [all...] |
H A D | CirrusLogic5430.h | 104 UINT8 *LineBuffer; member in struct:__anon12602
|
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaDxe/ |
H A D | VBoxVgaGraphicsOutput.c | 188 if (Private->LineBuffer) { 189 gBS->FreePool (Private->LineBuffer); 192 Private->LineBuffer = NULL; 193 Private->LineBuffer = AllocatePool (ModeData->HorizontalResolution * sizeof(EFI_GRAPHICS_OUTPUT_BLT_PIXEL)); 194 if (Private->LineBuffer == NULL) { 351 Private->LineBuffer 357 *(UINT32 *)Blt = Private->LineBuffer[X]; 414 Private->LineBuffer[X] = *(UINT32 *)Blt; 425 Private->LineBuffer 475 Private->LineBuffer [all...] |
H A D | VBoxVgaUgaDraw.c | 118 if (Private->LineBuffer) { 119 gBS->FreePool (Private->LineBuffer); 122 Private->LineBuffer = NULL; 123 Private->LineBuffer = AllocatePool (HorizontalResolution * 4); 124 if (Private->LineBuffer == NULL) { 245 Private->LineBuffer 251 *(UINT32 *)Blt = Private->LineBuffer[X]; 301 Private->LineBuffer[X] = *(UINT32 *)Blt; 312 Private->LineBuffer 350 Private->LineBuffer [all...] |
H A D | VBoxVga.h | 114 UINT32 *LineBuffer; member in struct:__anon13136
|
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/QemuVideoDxe/ |
H A D | Gop.c | 174 if (Private->LineBuffer) { 175 gBS->FreePool (Private->LineBuffer); 178 Private->LineBuffer = NULL; 179 Private->LineBuffer = AllocatePool (4 * ModeData->HorizontalResolution); 180 if (Private->LineBuffer == NULL) { 320 Private->LineBuffer = NULL;
|
H A D | Qemu.h | 99 UINT8 *LineBuffer; member in struct:__anon12630
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/GraphicsConsoleDxe/ |
H A D | GraphicsConsole.h | 73 EFI_GRAPHICS_OUTPUT_BLT_PIXEL *LineBuffer; member in struct:__anon11139
|
H A D | GraphicsConsole.c | 605 if (Private->LineBuffer != NULL) { 606 FreePool (Private->LineBuffer); 693 if (Private->LineBuffer != NULL) { 694 FreePool (Private->LineBuffer); 1331 // If the mode has been set at least one other time, then LineBuffer will not be NULL 1333 if (Private->LineBuffer != NULL) { 1349 // so erase the cursor, and free the LineBuffer for the current mode 1353 FreePool (Private->LineBuffer); 1358 Private->LineBuffer = NewLineBuffer;
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/ |
H A D | ParseUpdateProfile.c | 26 @param LineBuffer Line buffer to store the found line data. 38 IN OUT UINT8 *LineBuffer, 79 SetMem (LineBuffer, *LineSize, 0x0); 81 CopyMem (LineBuffer, Buffer, Length); 35 ProfileGetLine( IN UINT8 *Buffer, IN UINTN BufferSize, IN OUT UINT8 *LineBuffer, IN OUT UINTN *LineSize ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/ |
H A D | BiosVideo.h | 113 UINT8 *LineBuffer; member in struct:__anon10412
|
H A D | BiosVideo.c | 626 BiosVideoPrivate->LineBuffer = NULL; 999 if (BiosVideoPrivate->LineBuffer != NULL) { 1000 FreePool (BiosVideoPrivate->LineBuffer); 1907 if (BiosVideoPrivate->LineBuffer != NULL) { 1908 FreePool (BiosVideoPrivate->LineBuffer); 1919 BiosVideoPrivate->LineBuffer = (UINT8 *) AllocatePool ( 1922 if (NULL == BiosVideoPrivate->LineBuffer) { 3041 BiosVideoPrivate->LineBuffer[Index1] = VgaConvertColor (&BltBuffer[(SourceY + Index) * (Delta >> 2) + SourceX + Index1]); 3074 &BiosVideoPrivate->LineBuffer[Index1]
|
Completed in 138 milliseconds