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

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
H A DLzmaDecompress.c114 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/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c641 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/Bus/Pci/PciBusDxe/
H A DPciOptionRomSupport.c52 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 DDxeMain.c755 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 DBaseUefiDecompressLib.c647 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/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DLoadPciRom.c217 UINT32 DestinationSize; local
295 &DestinationSize,
299 DecompressedImageBuffer = AllocateZeroPool (DestinationSize);
308 DestinationSize,
314 ImageLength = DestinationSize;
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiHandleParsingLib/
H A DUefiHandleParsingLib.c1180 @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/OvmfPkg/Library/PlatformBdsLib/
H A DBdsPlatform.c1693 UINT32 DestinationSize; local
1773 &DestinationSize,
1778 DecompressedImageBuffer = AllocatePool (DestinationSize);
1787 DestinationSize,
1793 ImageLength = DestinationSize;

Completed in 258 milliseconds