HomeSort by relevance Sort by last modified time
    Searched refs:OutputBufferSize (Results 1 - 23 of 23) sorted by null

  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
F86GuidedSectionExtraction.c 36 If OutputBufferSize is NULL, then ASSERT().
42 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
58 OUT UINT32 *OutputBufferSize,
64 ASSERT (OutputBufferSize != NULL);
80 OutputBufferSize,
95 OutputBufferSize,
148 UINT32 OutputBufferSize;
187 &OutputBufferSize,
193 x86_Convert(*OutputBuffer, OutputBufferSize, 0, &X86State, 0);
GuidedSectionExtraction.c 34 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,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/
DxeCrc32GuidedSectionExtractLib.c 46 @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;
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);
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/
F86GuidedSectionExtraction.c 36 If OutputBufferSize is NULL, then ASSERT().
42 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
58 OUT UINT32 *OutputBufferSize,
64 ASSERT (OutputBufferSize != NULL);
80 OutputBufferSize,
95 OutputBufferSize,
148 UINT32 OutputBufferSize;
187 &OutputBufferSize,
193 x86_Convert(*OutputBuffer, OutputBufferSize, 0, &X86State, 0);
GuidedSectionExtraction.c 34 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,
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionDxe/
SectionExtractionDxe.c 224 UINT32 OutputBufferSize;
239 &OutputBufferSize,
259 if (OutputBufferSize > 0) {
263 AllocatedOutputBuffer = AllocatePool (OutputBufferSize);
299 CopyMem (AllocatedOutputBuffer, *OutputBuffer, OutputBufferSize);
306 *OutputSize = (UINTN) OutputBufferSize;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionPei/
SectionExtractionPei.c 160 UINT32 OutputBufferSize;
173 &OutputBufferSize,
193 if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) {
197 *OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1);
201 DEBUG ((DEBUG_INFO, "Customized Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffer));
223 *OutputSize = (UINTN) OutputBufferSize;
  /device/linaro/bootloader/edk2/ArmPlatformPkg/PrePi/
LzmaDecompress.h 33 If OutputBufferSize is NULL, then ASSERT().
39 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
55 OUT UINT32 *OutputBufferSize,
  /device/linaro/bootloader/edk2/ArmVirtPkg/PrePi/
LzmaDecompress.h 33 If OutputBufferSize is NULL, then ASSERT().
39 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
55 OUT UINT32 *OutputBufferSize,
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiCrc32GuidedSectionExtractLib/
PeiCrc32GuidedSectionExtractLib.c 127 @param OutputBufferSize The size of OutputBuffer.
140 OUT UINT32 *OutputBufferSize,
159 *OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
174 *OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
209 UINT32 OutputBufferSize;
226 OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
248 OutputBufferSize = SECTION_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION *) InputSection)->DataOffset;
265 Status = PeiCrc32GuidedSectionExtractLibCalculateCrc32 (*OutputBuffer, OutputBufferSize, &Crc32Checksum);
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeRsa2048Sha256GuidedSectionExtractLib/
DxeRsa2048Sha256GuidedSectionExtractLib.c 57 @param OutputBufferSize The size of OutputBuffer.
70 OUT UINT32 *OutputBufferSize,
89 *OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION2_HEADER);
104 *OutputBufferSize = SECTION_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION_HEADER);
137 UINT32 OutputBufferSize;
164 OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION2_HEADER);
167 CopyMem (*OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION2_HEADER), OutputBufferSize);
192 OutputBufferSize = SECTION_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION_HEADER);
195 CopyMem (*OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION_HEADER), OutputBufferSize);
331 CryptoStatus = Sha256Update (HashContext, *OutputBuffer, OutputBufferSize);
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/
PeiRsa2048Sha256GuidedSectionExtractLib.c 55 @param OutputBufferSize The size of OutputBuffer.
68 OUT UINT32 *OutputBufferSize,
87 *OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION2_HEADER);
102 *OutputBufferSize = SECTION_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION_HEADER);
135 UINT32 OutputBufferSize;
161 OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION2_HEADER);
164 CopyMem (*OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION2_HEADER), OutputBufferSize);
189 OutputBufferSize = SECTION_SIZE (InputSection) - sizeof (RSA_2048_SHA_256_SECTION_HEADER);
192 CopyMem (*OutputBuffer, (UINT8 *)InputSection + sizeof (RSA_2048_SHA_256_SECTION_HEADER), OutputBufferSize);
315 CryptoStatus = Sha256Update (HashContext, *OutputBuffer, OutputBufferSize);
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Library/
ExtractGuidedSectionLib.h 41 If OutputBufferSize is NULL, then ASSERT().
47 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
63 OUT UINT32 *OutputBufferSize,
177 If OutputBufferSize is NULL, then ASSERT().
182 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required if the buffer
200 OUT UINT32 *OutputBufferSize,
  /device/linaro/bootloader/edk2/IntelFspPkg/FspDxeIpl/
DxeIpl.c 173 UINT32 OutputBufferSize;
186 &OutputBufferSize,
206 if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) {
210 *OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1);
214 DEBUG ((DEBUG_INFO, "Customized Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffer));
236 *OutputSize = (UINTN) OutputBufferSize;
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiExtractGuidedSectionLib/
PrePiExtractGuidedSectionLib.c 119 OUT UINT32 *OutputBufferSize,
131 ASSERT (OutputBufferSize != NULL);
158 OutputBufferSize,
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/
DxeLoad.c 559 UINT32 OutputBufferSize;
572 &OutputBufferSize,
592 if (((SectionAttribute & EFI_GUIDED_SECTION_PROCESSING_REQUIRED) != 0) && OutputBufferSize > 0) {
596 *OutputBuffer = AllocatePages (EFI_SIZE_TO_PAGES (OutputBufferSize) + 1);
600 DEBUG ((DEBUG_INFO, "Customized Guided section Memory Size required is 0x%x and address is 0x%p\n", OutputBufferSize, *OutputBuffer));
622 *OutputSize = (UINTN) OutputBufferSize;
  /device/linaro/bootloader/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/
BaseExtractGuidedSectionLib.c 239 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,
  /device/linaro/bootloader/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/
DxeExtractGuidedSectionLib.c 245 If OutputBufferSize is NULL, then ASSERT().
250 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required if the buffer
268 OUT UINT32 *OutputBufferSize,
277 ASSERT (OutputBufferSize != NULL);
297 OutputBufferSize,
  /device/linaro/bootloader/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/
PeiExtractGuidedSectionLib.c 274 If OutputBufferSize is NULL, then ASSERT().
279 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required if the buffer
297 OUT UINT32 *OutputBufferSize,
311 ASSERT (OutputBufferSize != NULL);
340 OutputBufferSize,
  /device/linaro/bootloader/edk2/OvmfPkg/Sec/
SecMain.c 330 UINT32 OutputBufferSize;
357 &OutputBufferSize,
367 ScratchBuffer = ALIGN_POINTER ((UINT8*) OutputBuffer + OutputBufferSize, SIZE_1MB);
371 OutputBufferSize, ScratchBuffer, ScratchBufferSize,
389 OutputBufferSize,
414 OutputBufferSize,
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
BluetoothConfig.h 342 @param OutputBufferSize Indicates the size, in bytes, of the data buffer specified by OutputBuffer.
356 OUT UINTN *OutputBufferSize
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/SectionExtraction/
CoreSectionExtraction.c     [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
BaseUefiTianoCustomDecompressLib.c 867 If OutputBufferSize is NULL, then ASSERT().
873 @param[out] OutputBufferSize A pointer to the size, in bytes, of an output buffer required
889 OUT UINT32 *OutputBufferSize,
918 OutputBufferSize,
938 OutputBufferSize,

Completed in 541 milliseconds