Home
last modified time | relevance | path

Searched refs:TempTable (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckLib/
DVarCheckLib.c215 UINTN *TempTable; in VarCheckAddTableEntry() local
224 TempTable = ReallocateRuntimePool ( in VarCheckAddTableEntry()
233 if (TempTable == NULL) { in VarCheckAddTableEntry()
237 *Table = TempTable; in VarCheckAddTableEntry()
312 VOID *TempTable; in VarCheckLibInitializeAtEndOfDxe() local
352 TempTable = ReallocateRuntimePool ( in VarCheckLibInitializeAtEndOfDxe()
358 if (TempTable != NULL) { in VarCheckLibInitializeAtEndOfDxe()
359 mVarCheckLibAddressPointer = (VOID ***) TempTable; in VarCheckLibInitializeAtEndOfDxe()
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellCommandLib/
DConsistMapping.c1359 EFI_DEVICE_PATH_PROTOCOL **TempTable; in ShellCommandConsistMappingInitialize() local
1378 TempTable = AllocateZeroPool ((HandleNum + 1) * sizeof (EFI_DEVICE_PATH_PROTOCOL *)); in ShellCommandConsistMappingInitialize()
1379 if (TempTable == NULL) { in ShellCommandConsistMappingInitialize()
1409 for (Index = 0; TempTable[Index] != NULL; Index++) { in ShellCommandConsistMappingInitialize()
1410 if (DevicePathCompare (&TempTable[Index], &HIDevicePath) == 0) { in ShellCommandConsistMappingInitialize()
1416 if (TempTable[Index] == NULL) { in ShellCommandConsistMappingInitialize()
1417 TempTable[Index] = HIDevicePath; in ShellCommandConsistMappingInitialize()
1421 for (Index = 0; TempTable[Index] != NULL; Index++); in ShellCommandConsistMappingInitialize()
1422 PerformQuickSort(TempTable, Index, sizeof(EFI_DEVICE_PATH_PROTOCOL*), DevicePathCompare); in ShellCommandConsistMappingInitialize()
1423 *Table = TempTable; in ShellCommandConsistMappingInitialize()