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

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
H A DGuidedSectionExtraction.c34 If OutputBufferSize is NULL, then ASSERT().
40 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
56 OUT UINT32 *OutputBufferSize,
62 ASSERT (OutputBufferSize != NULL);
78 OutputBufferSize,
93 OutputBufferSize,
54 LzmaGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/
H A DDxeCrc32GuidedSectionExtractLib.c46 @param OutputBufferSize The size of OutputBuffer.
59 OUT UINT32 *OutputBufferSize,
78 *OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
93 *OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
128 UINT32 OutputBufferSize; local
146 OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
168 OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
195 Status = gBS->CalculateCrc32 (*OutputBuffer, OutputBufferSize, &Crc32Checksum);
57 Crc32GuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseExtractGuidedSectionLib/
H A DBaseExtractGuidedSectionLib.c239 If OutputBufferSize is NULL, then ASSERT().
244 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required if the buffer
262 OUT UINT32 *OutputBufferSize,
276 ASSERT (OutputBufferSize != NULL);
305 OutputBufferSize,
260 ExtractGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeExtractGuidedSectionLib/
H A DDxeExtractGuidedSectionLib.c233 If OutputBufferSize is NULL, then ASSERT().
238 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required if the buffer
256 OUT UINT32 *OutputBufferSize,
265 ASSERT (OutputBufferSize != NULL);
285 OutputBufferSize,
254 ExtractGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiExtractGuidedSectionLib/
H A DPeiExtractGuidedSectionLib.c264 If OutputBufferSize is NULL, then ASSERT().
269 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required if the buffer
287 OUT UINT32 *OutputBufferSize,
301 ASSERT (OutputBufferSize != NULL);
330 OutputBufferSize,
285 ExtractGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c866 If OutputBufferSize is NULL, then ASSERT().
872 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
888 OUT UINT32 *OutputBufferSize,
917 OutputBufferSize,
937 OutputBufferSize,
886 TianoDecompressGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/DxeIplPeim/
H A DDxeLoad.c414 UINT32 OutputBufferSize; local
427 &OutputBufferSize,
447 if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) {
451 *OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1);
455 DEBUG ((DEBUG_INFO, "Customized Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffer));
477 *OutputSize = (UINTN) OutputBufferSize;
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Sec/
H A DSecMain.c294 UINT32 OutputBufferSize; local
318 &OutputBufferSize,
329 ScratchBuffer = ALIGN_POINTER ((UINT8*) OutputBuffer + OutputBufferSize, SIZE_1MB);
343 OutputBufferSize,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/SectionExtraction/
H A DCoreSectionExtraction.c1446 UINT32 OutputBufferSize; local
1461 &OutputBufferSize,
1481 if (OutputBufferSize > 0) {
1485 AllocatedOutputBuffer = AllocatePool (OutputBufferSize);
1521 CopyMem (AllocatedOutputBuffer, *OutputBuffer, OutputBufferSize);
1528 *OutputSize = (UINTN) OutputBufferSize;

Completed in 44 milliseconds