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.c1488 EFI_DEVICE_PATH_PROTOCOL **TempTable; in ShellCommandConsistMappingInitialize() local
1507 TempTable = AllocateZeroPool ((HandleNum + 1) * sizeof (EFI_DEVICE_PATH_PROTOCOL *)); in ShellCommandConsistMappingInitialize()
1508 if (TempTable == NULL) { in ShellCommandConsistMappingInitialize()
1538 for (Index = 0; TempTable[Index] != NULL; Index++) { in ShellCommandConsistMappingInitialize()
1539 if (DevicePathCompare (&TempTable[Index], &HIDevicePath) == 0) { in ShellCommandConsistMappingInitialize()
1545 if (TempTable[Index] == NULL) { in ShellCommandConsistMappingInitialize()
1546 TempTable[Index] = HIDevicePath; in ShellCommandConsistMappingInitialize()
1550 for (Index = 0; TempTable[Index] != NULL; Index++); in ShellCommandConsistMappingInitialize()
1551 PerformQuickSort(TempTable, Index, sizeof(EFI_DEVICE_PATH_PROTOCOL*), DevicePathCompare); in ShellCommandConsistMappingInitialize()
1552 *Table = TempTable; in ShellCommandConsistMappingInitialize()