Home
last modified time | relevance | path

Searched refs:NewIndex (Results 1 – 5 of 5) sorted by relevance

/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformPei/
DBootMode.c378 UINT32 NewIndex; in PrioritizeBootMode()
397 for ( NewIndex = 0; in PrioritizeBootMode()
398 NewIndex < ARRAY_SIZE (mBootModePriority); in PrioritizeBootMode()
399 NewIndex++) { in PrioritizeBootMode()
400 if (mBootModePriority[NewIndex] == NewBootMode) { in PrioritizeBootMode()
405 if (NewIndex < CurrentIndex) { in PrioritizeBootMode()
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenVtf/
DGenVtf.c2757 INTN NewIndex; in main() local
2759 for (NewIndex = OutFileNameLen; NewIndex > 0; --NewIndex) { in main()
2760 if (OutFileName1[NewIndex] == '/' || OutFileName1[NewIndex] == '\\') { in main()
2764 if (NewIndex == 0) { in main()
2767 INTN SymFileNameLen = NewIndex + 1 + strlen(VTF_SYM_FILE); in main()
2773 memcpy(SymFileName, OutFileName1, NewIndex + 1); in main()
2774 memcpy(SymFileName + NewIndex + 1, VTF_SYM_FILE, strlen(VTF_SYM_FILE)); in main()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
DIp4Config2Impl.c707 UINTN NewIndex; in Ip4Config2SetDnsServerWorker() local
738 for (NewIndex = 0; NewIndex < NewDnsCount; NewIndex++) { in Ip4Config2SetDnsServerWorker()
739 CopyMem (&DnsAddress, NewDns + NewIndex, sizeof (IP4_ADDR)); in Ip4Config2SetDnsServerWorker()
750 for (Index1 = NewIndex + 1; Index1 < NewDnsCount; Index1++) { in Ip4Config2SetDnsServerWorker()
751 if (EFI_IP4_EQUAL (NewDns + NewIndex, NewDns + Index1)) { in Ip4Config2SetDnsServerWorker()
768 if (EFI_IP4_EQUAL (NewDns + NewIndex, OldDns + OldIndex)) { in Ip4Config2SetDnsServerWorker()
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
DIp6ConfigImpl.c1329 UINTN NewIndex; in Ip6ConfigSetDnsServer() local
1363 for (NewIndex = 0; NewIndex < NewDnsCount; NewIndex++) { in Ip6ConfigSetDnsServer()
1365 if (!NetIp6IsValidUnicast (NewDns + NewIndex)) { in Ip6ConfigSetDnsServer()
1375 for (Index1 = NewIndex + 1; Index1 < NewDnsCount; Index1++) { in Ip6ConfigSetDnsServer()
1376 if (EFI_IP6_EQUAL (NewDns + NewIndex, NewDns + Index1)) { in Ip6ConfigSetDnsServer()
1393 if (EFI_IP6_EQUAL (NewDns + NewIndex, OldDns + OldIndex)) { in Ip6ConfigSetDnsServer()
/device/linaro/bootloader/edk2/NetworkPkg/IScsiDxe/
DIScsiConfig.c1172 UINTN NewIndex; in IScsiConfigDeleteAttempts() local
1267 for (NewIndex = 0; NewIndex < Total; NewIndex++) { in IScsiConfigDeleteAttempts()
1268 if (AttemptConfigOrder[NewIndex] == AttemptConfigData->AttemptConfigIndex) { in IScsiConfigDeleteAttempts()
1269 AttemptConfigOrder[NewIndex] = 0; in IScsiConfigDeleteAttempts()
1286 for (Index = 0, NewIndex = 0; Index < Total; Index++) { in IScsiConfigDeleteAttempts()
1288 AttemptNewOrder[NewIndex] = AttemptConfigOrder[Index]; in IScsiConfigDeleteAttempts()
1289 NewIndex++; in IScsiConfigDeleteAttempts()