Home
last modified time | relevance | path

Searched refs:OutputBufferSize (Results 1 – 23 of 23) sorted by relevance

/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
DF86GuidedSectionExtraction.c58 OUT UINT32 *OutputBufferSize, in LzmaArchGuidedSectionGetInfo() argument
64 ASSERT (OutputBufferSize != NULL); in LzmaArchGuidedSectionGetInfo()
80 OutputBufferSize, in LzmaArchGuidedSectionGetInfo()
95 OutputBufferSize, in LzmaArchGuidedSectionGetInfo()
148 UINT32 OutputBufferSize; in LzmaArchGuidedSectionExtraction() local
187 &OutputBufferSize, in LzmaArchGuidedSectionExtraction()
193 x86_Convert(*OutputBuffer, OutputBufferSize, 0, &X86State, 0); in LzmaArchGuidedSectionExtraction()
DGuidedSectionExtraction.c56 OUT UINT32 *OutputBufferSize, in LzmaGuidedSectionGetInfo() argument
62 ASSERT (OutputBufferSize != NULL); in LzmaGuidedSectionGetInfo()
78 OutputBufferSize, in LzmaGuidedSectionGetInfo()
93 OutputBufferSize, in LzmaGuidedSectionGetInfo()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/
DF86GuidedSectionExtraction.c58 OUT UINT32 *OutputBufferSize, in LzmaArchGuidedSectionGetInfo() argument
64 ASSERT (OutputBufferSize != NULL); in LzmaArchGuidedSectionGetInfo()
80 OutputBufferSize, in LzmaArchGuidedSectionGetInfo()
95 OutputBufferSize, in LzmaArchGuidedSectionGetInfo()
148 UINT32 OutputBufferSize; in LzmaArchGuidedSectionExtraction() local
187 &OutputBufferSize, in LzmaArchGuidedSectionExtraction()
193 x86_Convert(*OutputBuffer, OutputBufferSize, 0, &X86State, 0); in LzmaArchGuidedSectionExtraction()
DGuidedSectionExtraction.c56 OUT UINT32 *OutputBufferSize, in LzmaGuidedSectionGetInfo() argument
62 ASSERT (OutputBufferSize != NULL); in LzmaGuidedSectionGetInfo()
78 OutputBufferSize, in LzmaGuidedSectionGetInfo()
93 OutputBufferSize, in LzmaGuidedSectionGetInfo()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/
DDxeCrc32GuidedSectionExtractLib.c59 OUT UINT32 *OutputBufferSize, in Crc32GuidedSectionGetInfo() argument
78 …*OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->… in Crc32GuidedSectionGetInfo()
93 …*OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->Da… in Crc32GuidedSectionGetInfo()
128 UINT32 OutputBufferSize; in Crc32GuidedSectionHandler() local
146OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->… in Crc32GuidedSectionHandler()
168OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->Da… in Crc32GuidedSectionHandler()
195 Status = gBS->CalculateCrc32 (*OutputBuffer, OutputBufferSize, &Crc32Checksum); in Crc32GuidedSectionHandler()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionPei/
DSectionExtractionPei.c160 UINT32 OutputBufferSize; in CustomGuidedSectionExtract() local
173 &OutputBufferSize, in CustomGuidedSectionExtract()
193 …if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) { in CustomGuidedSectionExtract()
197 *OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1); in CustomGuidedSectionExtract()
201 …Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffe… in CustomGuidedSectionExtract()
223 *OutputSize = (UINTN) OutputBufferSize; in CustomGuidedSectionExtract()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionDxe/
DSectionExtractionDxe.c224 UINT32 OutputBufferSize; in CustomGuidedSectionExtract() local
239 &OutputBufferSize, in CustomGuidedSectionExtract()
259 if (OutputBufferSize > 0) { in CustomGuidedSectionExtract()
263 AllocatedOutputBuffer = AllocatePool (OutputBufferSize); in CustomGuidedSectionExtract()
299 CopyMem (AllocatedOutputBuffer, *OutputBuffer, OutputBufferSize); in CustomGuidedSectionExtract()
306 *OutputSize = (UINTN) OutputBufferSize; in CustomGuidedSectionExtract()
/device/linaro/bootloader/edk2/SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/
DPeiRsa2048Sha256GuidedSectionExtractLib.c68 OUT UINT32 *OutputBufferSize, in Rsa2048Sha256GuidedSectionGetInfo() argument
87 *OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION2_HEADER); in Rsa2048Sha256GuidedSectionGetInfo()
102 *OutputBufferSize = SECTION_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION_HEADER); in Rsa2048Sha256GuidedSectionGetInfo()
135 UINT32 OutputBufferSize; in Rsa2048Sha256GuidedSectionHandler() local
161OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION2_HEADER); in Rsa2048Sha256GuidedSectionHandler()
164 …OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION2_HEADER), OutputBufferSize); in Rsa2048Sha256GuidedSectionHandler()
189 OutputBufferSize = SECTION_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION_HEADER); in Rsa2048Sha256GuidedSectionHandler()
192 …*OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION_HEADER), OutputBufferSize); in Rsa2048Sha256GuidedSectionHandler()
315 CryptoStatus = Sha256Update (HashContext, *OutputBuffer, OutputBufferSize); in Rsa2048Sha256GuidedSectionHandler()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiCrc32GuidedSectionExtractLib/
DPeiCrc32GuidedSectionExtractLib.c140 OUT UINT32 *OutputBufferSize, in Crc32GuidedSectionGetInfo() argument
159 …*OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->… in Crc32GuidedSectionGetInfo()
174 …*OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->Da… in Crc32GuidedSectionGetInfo()
209 UINT32 OutputBufferSize; in Crc32GuidedSectionHandler() local
226OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->… in Crc32GuidedSectionHandler()
248OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->Da… in Crc32GuidedSectionHandler()
265 …Status = PeiCrc32GuidedSectionExtractLibCalculateCrc32 (*OutputBuffer, OutputBufferSize, &Crc32Che… in Crc32GuidedSectionHandler()
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeRsa2048Sha256GuidedSectionExtractLib/
DDxeRsa2048Sha256GuidedSectionExtractLib.c70 OUT UINT32 *OutputBufferSize, in Rsa2048Sha256GuidedSectionGetInfo() argument
89 *OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION2_HEADER); in Rsa2048Sha256GuidedSectionGetInfo()
104 *OutputBufferSize = SECTION_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION_HEADER); in Rsa2048Sha256GuidedSectionGetInfo()
137 UINT32 OutputBufferSize; in Rsa2048Sha256GuidedSectionHandler() local
164OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION2_HEADER); in Rsa2048Sha256GuidedSectionHandler()
167 …OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION2_HEADER), OutputBufferSize); in Rsa2048Sha256GuidedSectionHandler()
192 OutputBufferSize = SECTION_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION_HEADER); in Rsa2048Sha256GuidedSectionHandler()
195 …*OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION_HEADER), OutputBufferSize); in Rsa2048Sha256GuidedSectionHandler()
331 CryptoStatus = Sha256Update (HashContext, *OutputBuffer, OutputBufferSize); in Rsa2048Sha256GuidedSectionHandler()
/device/linaro/bootloader/edk2/IntelFspPkg/FspDxeIpl/
DDxeIpl.c173 UINT32 OutputBufferSize; in CustomGuidedSectionExtract() local
186 &OutputBufferSize, in CustomGuidedSectionExtract()
206 if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) { in CustomGuidedSectionExtract()
210 *OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1); in CustomGuidedSectionExtract()
214 …Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffe… in CustomGuidedSectionExtract()
236 *OutputSize = (UINTN) OutputBufferSize; in CustomGuidedSectionExtract()
/device/linaro/bootloader/edk2/MdePkg/Include/Library/
DExtractGuidedSectionLib.h63 OUT UINT32 *OutputBufferSize,
200 OUT UINT32 *OutputBufferSize,
/device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/
DDxeLoad.c559 UINT32 OutputBufferSize; in CustomGuidedSectionExtract() local
572 &OutputBufferSize, in CustomGuidedSectionExtract()
592 …if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) { in CustomGuidedSectionExtract()
596 *OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1); in CustomGuidedSectionExtract()
600 …Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffe… in CustomGuidedSectionExtract()
622 *OutputSize = (UINTN) OutputBufferSize; in CustomGuidedSectionExtract()
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiExtractGuidedSectionLib/
DPrePiExtractGuidedSectionLib.c119 OUT UINT32 *OutputBufferSize, in ExtractGuidedSectionGetInfo() argument
131 ASSERT (OutputBufferSize != NULL); in ExtractGuidedSectionGetInfo()
158 OutputBufferSize, in ExtractGuidedSectionGetInfo()
/device/linaro/bootloader/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/
DDxeExtractGuidedSectionLib.c268 OUT UINT32 *OutputBufferSize, in ExtractGuidedSectionGetInfo() argument
277 ASSERT (OutputBufferSize != NULL); in ExtractGuidedSectionGetInfo()
297 OutputBufferSize, in ExtractGuidedSectionGetInfo()
/device/linaro/bootloader/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/
DBaseExtractGuidedSectionLib.c262 OUT UINT32 *OutputBufferSize, in ExtractGuidedSectionGetInfo() argument
276 ASSERT (OutputBufferSize != NULL); in ExtractGuidedSectionGetInfo()
305 OutputBufferSize, in ExtractGuidedSectionGetInfo()
/device/linaro/bootloader/edk2/ArmPlatformPkg/PrePi/
DLzmaDecompress.h55 OUT UINT32 *OutputBufferSize,
/device/linaro/bootloader/edk2/ArmVirtPkg/PrePi/
DLzmaDecompress.h55 OUT UINT32 *OutputBufferSize,
/device/linaro/bootloader/edk2/OvmfPkg/Sec/
DSecMain.c330 UINT32 OutputBufferSize; in DecompressMemFvs() local
357 &OutputBufferSize, in DecompressMemFvs()
367 ScratchBuffer = ALIGN_POINTER ((UINT8*) OutputBuffer + OutputBufferSize, SIZE_1MB); in DecompressMemFvs()
371 OutputBufferSize, ScratchBuffer, ScratchBufferSize, in DecompressMemFvs()
389 OutputBufferSize, in DecompressMemFvs()
414 OutputBufferSize, in DecompressMemFvs()
/device/linaro/bootloader/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/
DPeiExtractGuidedSectionLib.c297 OUT UINT32 *OutputBufferSize, in ExtractGuidedSectionGetInfo() argument
311 ASSERT (OutputBufferSize != NULL); in ExtractGuidedSectionGetInfo()
340 OutputBufferSize, in ExtractGuidedSectionGetInfo()
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/SectionExtraction/
DCoreSectionExtraction.c1513 UINT32 OutputBufferSize; in CustomGuidedSectionExtract() local
1528 &OutputBufferSize, in CustomGuidedSectionExtract()
1548 if (OutputBufferSize > 0) { in CustomGuidedSectionExtract()
1552 AllocatedOutputBuffer = AllocatePool (OutputBufferSize); in CustomGuidedSectionExtract()
1588 CopyMem (AllocatedOutputBuffer, *OutputBuffer, OutputBufferSize); in CustomGuidedSectionExtract()
1595 *OutputSize = (UINTN) OutputBufferSize; in CustomGuidedSectionExtract()
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
DBaseUefiTianoCustomDecompressLib.c889 OUT UINT32 *OutputBufferSize, in TianoDecompressGetInfo() argument
918 OutputBufferSize, in TianoDecompressGetInfo()
938 OutputBufferSize, in TianoDecompressGetInfo()
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DBluetoothConfig.h356 OUT UINTN *OutputBufferSize