Searched refs:OutSize (Results 1 – 2 of 2) sorted by relevance
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/ |
D | EfiDecompress.c | 39 UINT32 OutSize; in ShellCommandRunEfiDecompress() local 54 OutSize = 0; in ShellCommandRunEfiDecompress() 133 … Status = Decompress->GetInfo (Decompress, InBuffer, (UINT32) InSize, &OutSize, &ScratchSize); in ShellCommandRunEfiDecompress() 136 if (EFI_ERROR(Status) || OutSize == 0) { in ShellCommandRunEfiDecompress() 145 OutBuffer = AllocateZeroPool(OutSize); in ShellCommandRunEfiDecompress() 150 …ecompress->Decompress (Decompress, InBuffer, (UINT32) InSize, OutBuffer, OutSize, ScratchBuffer, S… in ShellCommandRunEfiDecompress() 159 OutSizeTemp = OutSize; in ShellCommandRunEfiDecompress() 161 OutSize = (UINT32) OutSizeTemp; in ShellCommandRunEfiDecompress()
|
D | EfiCompress.c | 38 UINT64 OutSize; in ShellCommandRunEfiCompress() local 50 OutSize = 0; in ShellCommandRunEfiCompress() 126 Status = Compress (InBuffer, InSize, OutBuffer, &OutSize); in ShellCommandRunEfiCompress() 128 OutBuffer = AllocateZeroPool ((UINTN) OutSize); in ShellCommandRunEfiCompress() 132 Status = Compress (InBuffer, InSize, OutBuffer, &OutSize); in ShellCommandRunEfiCompress() 140 OutSize2 = (UINTN)OutSize; in ShellCommandRunEfiCompress()
|