Searched defs:ScratchSize (Results 1 - 15 of 15) sorted by relevance

/device/linaro/bootloader/edk2/DuetPkg/EfiLdr/
H A DEfiLoader.c53 UINT32 ScratchSize; local
100 &ScratchSize
107 PrintString ("BFV decompress: DestinationSize = %x, ScratchSize = %x\n", (UINTN) DestinationSize, (UINTN) ScratchSize);
149 &ScratchSize
205 &ScratchSize
H A DTianoDecompress.c661 OUT UINT32 *ScratchSize
674 ScratchSize - The size of scratch buffer.
685 *ScratchSize = sizeof (SCRATCH_DATA);
703 IN UINT32 ScratchSize,
719 ScratchSize - The size of scratch buffer.
743 if (ScratchSize < sizeof (SCRATCH_DATA)) {
829 OUT UINT32 *ScratchSize
843 ScratchSize - The size of scratch buffer.
856 ScratchSize
868 IN UINT32 ScratchSize
697 Decompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize, IN UINT8 Version ) argument
[all...]
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DEfiDecompress.c47 UINT32 ScratchSize; local
129 Status = Decompress->GetInfo(Decompress, InBuffer, (UINT32)InSize, &OutSize, &ScratchSize);
140 ScratchBuffer = AllocateZeroPool(ScratchSize);
144 Status = Decompress->Decompress(Decompress, InBuffer, (UINT32)InSize, OutBuffer, OutSize, ScratchBuffer, ScratchSize);
H A DLoadPciRom.c219 UINT32 ScratchSize; local
297 &ScratchSize
302 Scratch = AllocateZeroPool (ScratchSize);
311 ScratchSize
/device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
H A DPciOptionRomSupport.c425 UINT32 ScratchSize; local
494 &ScratchSize
500 Scratch = AllocatePool (ScratchSize);
509 ScratchSize
H A DPciRomTable.c130 UINT32 ScratchSize; local
214 &ScratchSize
220 Scratch = AllocatePool (ScratchSize);
229 ScratchSize
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciOptionRomSupport.c53 UINT32 ScratchSize; local
124 &ScratchSize
136 Scratch = AllocatePool (ScratchSize);
148 ScratchSize
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
H A DDecompress.c667 OUT UINT32 *ScratchSize
680 ScratchSize - The size of scratch buffer.
691 *ScratchSize = sizeof (SCRATCH_DATA);
709 IN UINT32 ScratchSize,
725 ScratchSize - The size of scratch buffer.
749 if (ScratchSize < sizeof (SCRATCH_DATA)) {
834 OUT UINT32 *ScratchSize
848 ScratchSize - The size of scratch buffer.
861 ScratchSize
873 IN UINT32 ScratchSize
703 Decompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize, IN UINT8 Version ) argument
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
H A DDecompress.c661 OUT UINT32 *ScratchSize
674 ScratchSize - The size of scratch buffer.
685 *ScratchSize = sizeof (SCRATCH_DATA);
703 IN UINT32 ScratchSize
718 ScratchSize - The size of scratch buffer.
739 if (ScratchSize < sizeof (SCRATCH_DATA)) {
796 OUT UINT32 *ScratchSize
809 ScratchSize - The size of scratch buffer.
818 return GetInfo (Source, SrcSize, DstSize, ScratchSize);
826 OUT UINT32 *ScratchSize
931 UINT32 ScratchSize; local
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VolInfo/
H A DVolInfo.c1238 UINT32 ScratchSize; local
1355 Status = GetInfoFunction (CompressedBuffer, CompressedLength, &DstSize, &ScratchSize);
1366 ScratchBuffer = malloc (ScratchSize);
1377 ScratchSize
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Pei/PeiLib/
H A DDecompress.c33 OUT UINT32 *ScratchSize
45 IN UINT32 ScratchSize
55 OUT UINT32 *ScratchSize
67 IN UINT32 ScratchSize
811 OUT UINT32 *ScratchSize
824 ScratchSize - The size of scratch buffer.
835 *ScratchSize = sizeof (SCRATCH_DATA);
853 IN UINT32 ScratchSize,
869 ScratchSize - The size of scratch buffer.
893 if (ScratchSize < sizeo
847 Decompress( IN VOID *Source, IN UINT32 SrcSize, IN OUT VOID *Destination, IN UINT32 DstSize, IN OUT VOID *Scratch, IN UINT32 ScratchSize, IN UINT8 Version ) argument
[all...]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/
H A DSectionExtraction.c735 UINT32 ScratchSize; local
831 &ScratchSize
842 ScratchBuffer = AllocatePool (ScratchSize);
856 ScratchSize
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/SectionExtraction/
H A DCoreSectionExtraction.c686 UINT32 ScratchSize; local
782 &ScratchSize
793 ScratchBuffer = AllocatePool (ScratchSize);
807 ScratchSize
/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
H A DVariable.c1880 UINTN ScratchSize; local
2011 ScratchSize = MAX (PcdGet32 (PcdMaxVariableSize), PcdGet32 (PcdMaxHardwareErrorVariableSize));
2014 SetMem (NextVariableHeader, ScratchSize, 0xff);
3037 UINTN ScratchSize; local
3067 ScratchSize = MAX (PcdGet32 (PcdMaxVariableSize), PcdGet32 (PcdMaxHardwareErrorVariableSize));
3068 VolatileVariableStore = AllocateRuntimePool (PcdGet32 (PcdVariableStoreSize) + ScratchSize);
3074 SetMem (VolatileVariableStore, PcdGet32 (PcdVariableStoreSize) + ScratchSize, 0xff);
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
H A DVariable.c2141 UINTN ScratchSize; local
2240 ScratchSize = mVariableModuleGlobal->ScratchBufferSize;
2241 SetMem (NextVariable, ScratchSize, 0xff);
3989 UINTN ScratchSize; local
4053 ScratchSize = GetNonVolatileMaxVariableSize ();
4054 mVariableModuleGlobal->ScratchBufferSize = ScratchSize;
4055 VolatileVariableStore = AllocateRuntimePool (PcdGet32 (PcdVariableStoreSize) + ScratchSize);
4065 SetMem (VolatileVariableStore, PcdGet32 (PcdVariableStoreSize) + ScratchSize, 0xff);

Completed in 389 milliseconds