/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/ |
H A D | Decompress.h | 32 buffer is returned in DestinationSize, the size of the scratch buffer is 38 output it as DestinationSize. And ScratchSize is specific to the decompression 44 @param DestinationSize A pointer to the size, in bytes, of the uncompressed buffer 51 @retval EFI_SUCCESS The size of the uncompressed data was returned in DestinationSize 64 OUT UINT32 *DestinationSize, 87 @param DestinationSize The size of destination buffer. The size of destination 107 IN UINT32 DestinationSize,
|
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Library/ |
H A D | UefiDecompressLib.h | 33 buffer is returned in DestinationSize, the size of the scratch buffer is returned 37 field from the beginning bytes of the source data and output it as DestinationSize. 41 If DestinationSize is NULL, then ASSERT(). 46 @param DestinationSize A pointer to the size, in bytes, of the uncompressed buffer 54 in DestinationSize and the size of the scratch 67 OUT UINT32 *DestinationSize,
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/ |
H A D | LzmaDecompressLibInternal.h | 32 The size of the uncompressed buffer is returned in DestinationSize, 36 field from the LZMA_HEADER_SIZE beginning bytes of the source data and output it as DestinationSize. 43 @param DestinationSize A pointer to the size, in bytes, of the uncompressed buffer 51 in DestinationSize and the size of the scratch 60 OUT UINT32 *DestinationSize,
|
H A D | LzmaDecompress.c | 114 The size of the uncompressed buffer is returned in DestinationSize, 118 field from the LZMA_HEADER_SIZE beginning bytes of the source data and output it as DestinationSize. 125 @param DestinationSize A pointer to the size, in bytes, of the uncompressed buffer 133 in DestinationSize and the size of the scratch 142 OUT UINT32 *DestinationSize, 152 *DestinationSize = (UINT32)DecodedSize; 139 LzmaUefiDecompressGetInfo( IN CONST VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/ |
H A D | LoadPciRom.c | 217 UINT32 DestinationSize; local 295 &DestinationSize, 299 DecompressedImageBuffer = AllocateZeroPool (DestinationSize); 308 DestinationSize, 314 ImageLength = DestinationSize;
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/ |
H A D | PciOptionRomSupport.c | 52 UINT32 DestinationSize; local 123 &DestinationSize, 130 if (Buffer == NULL || *BufferSize < DestinationSize) { 131 *BufferSize = DestinationSize; 135 *BufferSize = DestinationSize; 146 DestinationSize,
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/DxeMain/ |
H A D | DxeMain.c | 755 size of the uncompressed buffer is returned in DestinationSize, the size of 760 it as DestinationSize. And ScratchSize is specific to the decompression 766 @param DestinationSize A pointer to the size, in bytes, of the 776 DestinationSize and the size of the scratch buffer 790 OUT UINT32 *DestinationSize, 794 if (Source == NULL || DestinationSize == NULL || ScratchSize == NULL) { 797 return UefiDecompressGetInfo (Source, SourceSize, DestinationSize, ScratchSize); 820 @param DestinationSize The size of the destination buffer. The size of 842 IN UINT32 DestinationSize, 860 if (ScratchSize < TestScratchSize || DestinationSize < TestDestinationSiz 786 DxeMainUefiDecompressGetInfo( IN EFI_DECOMPRESS_PROTOCOL *This, IN VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument 837 DxeMainUefiDecompress( IN EFI_DECOMPRESS_PROTOCOL *This, IN VOID *Source, IN UINT32 SourceSize, IN OUT VOID *Destination, IN UINT32 DestinationSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseUefiDecompressLib/ |
H A D | BaseUefiDecompressLib.c | 647 buffer is returned in DestinationSize, the size of the scratch buffer is returned 651 field from the beginning bytes of the source data and output it as DestinationSize. 655 If DestinationSize is NULL, then ASSERT(). 660 @param DestinationSize A pointer to the size, in bytes, of the uncompressed buffer 668 in DestinationSize, and the size of the scratch 681 OUT UINT32 *DestinationSize, 688 ASSERT (DestinationSize != NULL); 701 *DestinationSize = ReadUnaligned32 ((UINT32 *)Source + 1); 678 UefiDecompressGetInfo( IN CONST VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/PlatformBdsLib/ |
H A D | BdsPlatform.c | 1693 UINT32 DestinationSize; local 1773 &DestinationSize, 1778 DecompressedImageBuffer = AllocatePool (DestinationSize); 1787 DestinationSize, 1793 ImageLength = DestinationSize;
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiHandleParsingLib/ |
H A D | UefiHandleParsingLib.c | 1180 @param[in, out] DestinationSize The pointer to the size of DestinationBuffer. 1192 IN OUT UINTN *DestinationSize, 1206 if (DestinationSize == NULL) { 1209 LocalDestinationSize = *DestinationSize; 1214 if (DestinationSize != NULL) { 1215 *DestinationSize = LocalDestinationSize; 1190 BuffernCatGrow( IN OUT VOID **DestinationBuffer, IN OUT UINTN *DestinationSize, IN VOID *SourceBuffer, IN UINTN SourceSize ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/ |
H A D | BaseUefiTianoCustomDecompressLib.c | 641 buffer is returned in DestinationSize, the size of the scratch buffer is returned 645 field from the beginning bytes of the source data and output it as DestinationSize. 649 If DestinationSize is NULL, then ASSERT(). 654 @param DestinationSize A pointer to the size, in bytes, of the uncompressed buffer 662 in DestinationSize and the size of the scratch 675 OUT UINT32 *DestinationSize, 682 ASSERT (DestinationSize != NULL); 695 *DestinationSize = ReadUnaligned32 ((UINT32 *)Source + 1); 672 UefiDecompressGetInfo( IN CONST VOID *Source, IN UINT32 SourceSize, OUT UINT32 *DestinationSize, OUT UINT32 *ScratchSize ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/ |
H A D | DxeMain.h | 2153 size of the uncompressed buffer is returned in DestinationSize, the size of 2158 it as DestinationSize. And ScratchSize is specific to the decompression 2164 @param DestinationSize A pointer to the size, in bytes, of the 2174 DestinationSize and the size of the scratch buffer 2188 OUT UINT32 *DestinationSize, 2212 @param DestinationSize The size of the destination buffer. The size of 2234 IN UINT32 DestinationSize,
|