/device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/ArmVExpressDxe/ |
ArmVExpressCommon.c | 36 UINTN Index;
40 for (Index = 0; ArmVExpressPlatforms[Index].Id != ARM_FVP_VEXPRESS_UNKNOWN; Index++) {
41 if (ArmVExpressPlatforms[Index].Id == PlatformId) {
42 *Platform = &ArmVExpressPlatforms[Index];
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/EfiDriverLib/ |
EfiGetConfigTable.c | 50 UINTN Index;
53 for (Index = 0; Index < gST->NumberOfTableEntries; Index++) {
54 if (EfiCompareGuid (TableGuid, &(gST->ConfigurationTable[Index].VendorGuid))) {
55 *Table = gST->ConfigurationTable[Index].VendorTable;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseLib/ |
CpuDeadLoop.c | 39 volatile UINTN Index;
41 for (Index = 0; Index == 0;);
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/ |
EfiCompareGuid.c | 48 UINTN Index;
53 for (Index = 0; Index < 16; ++Index) {
54 if (*(((UINT8*) Guid1) + Index) != *(((UINT8*) Guid2) + Index)) {
|
/device/linaro/bootloader/edk2/EmbeddedPkg/EblExternCmd/ |
Main.c | 44 UINTN Index;
47 for (Index = 0; Index < Argc; Index++) {
48 AsciiPrint ("Argv[%d] = %a\n", Index, Argv[Index]);
|
/device/linaro/bootloader/edk2/MdeModulePkg/Application/HelloWorld/ |
HelloWorld.c | 40 UINT32 Index;
42 Index = 0;
48 for (Index = 0; Index < PcdGet32 (PcdHelloWorldPrintTimes); Index ++) {
|
/device/linaro/bootloader/edk2/MdePkg/Library/BaseLib/ |
CpuDeadLoop.c | 35 volatile UINTN Index;
37 for (Index = 0; Index == 0;);
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Usb/Ohci/Dxe/ |
OhciDebug.c | 39 UINT32 Index;
49 for (Index = 0; Index < sizeof (ED_DESCRIPTOR)/4; Index ++) {
50 DEBUG ((EFI_D_INFO, "%8x ", *((UINT32*)(Ed) + Index) ));
66 for (Index = 0; Index < sizeof (TD_DESCRIPTOR)/4; Index ++) {
67 DEBUG ((EFI_D_INFO, "%8x ", *((UINT32*)(Td) + Index) ));
70 for (Index = 0; Index < Td->ActualSendLength; Index ++) { [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Application/ShellCTestApp/ |
ShellCTestApp.c | 42 UINTN Index;
46 for (Index = 1; Index < Argc; Index++) {
47 Print(L"Argv[%d]: \"%s\"\n", Index, Argv[Index]);
|
/prebuilts/go/darwin-x86/src/bytes/ |
bytes_generic.go | 12 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s. 13 func Index(s, sep []byte) int {
|
/prebuilts/go/darwin-x86/src/strings/ |
strings_generic.go | 12 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s. 13 func Index(s, sep string) int {
|
/prebuilts/go/linux-x86/src/bytes/ |
bytes_generic.go | 12 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s. 13 func Index(s, sep []byte) int {
|
/prebuilts/go/linux-x86/src/strings/ |
strings_generic.go | 12 // Index returns the index of the first instance of sep in s, or -1 if sep is not present in s. 13 func Index(s, sep string) int {
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/RecoveryOemHookLib/ |
RecoveryOemHookLib.c | 57 volatile UINTN Index;
60 for (Index = 0; Index == 0;);
|
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Library/BeagleBoardLib/ |
BeagleBoardMem.c | 41 UINTN Index = 0;
58 VirtualMemoryTable[Index].PhysicalBase = PcdGet64 (PcdSystemMemoryBase);
59 VirtualMemoryTable[Index].VirtualBase = PcdGet64 (PcdSystemMemoryBase);
60 VirtualMemoryTable[Index].Length = PcdGet64 (PcdSystemMemorySize);
61 VirtualMemoryTable[Index].Attributes = CacheAttributes;
64 VirtualMemoryTable[++Index].PhysicalBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
65 VirtualMemoryTable[Index].VirtualBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
66 VirtualMemoryTable[Index].Length = SOC_REGISTERS_L3_PHYSICAL_LENGTH;
67 VirtualMemoryTable[Index].Attributes = SOC_REGISTERS_L3_ATTRIBUTES;
70 VirtualMemoryTable[++Index].PhysicalBase = SOC_REGISTERS_L4_PHYSICAL_BASE; [all...] |
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Sec/ |
PadConfiguration.c | 269 UINTN Index;
273 for (Index = 0; Index < NumPinsToConfigure; Index++) {
275 PadConfiguration = (PadConfigurationTable[Index].MuxMode << MUXMODE_OFFSET);
276 PadConfiguration |= (PadConfigurationTable[Index].PullConfig << PULL_CONFIG_OFFSET);
277 PadConfiguration |= (PadConfigurationTable[Index].InputEnable << INPUTENABLE_OFFSET);
280 MmioWrite16(PadConfigurationTable[Index].Pin, PadConfiguration);
|
/device/linaro/bootloader/edk2/ArmPkg/Drivers/ArmGic/ |
ArmGicSecLib.c | 32 UINTN Index;
39 for (Index = 0; Index < GicSecureInterruptMaskSize; Index++) {
40 InterruptStatus = MmioRead32 (GicDistributorBase + ARM_GIC_ICDISR + (Index * 4));
41 MmioWrite32 (GicDistributorBase + ARM_GIC_ICDISR + (Index * 4), InterruptStatus & (~GicSecureInterruptMask[Index]));
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
Crc32.c | 304 UINTN Index;
312 for (Index = 0, Ptr = Data; Index < DataSize; Index++, Ptr++) {
|
/device/linaro/bootloader/edk2/BeagleBoardPkg/Library/BeagleBoardLib/ |
BeagleBoardMem.c | 41 UINTN Index = 0;
58 VirtualMemoryTable[Index].PhysicalBase = PcdGet64 (PcdSystemMemoryBase);
59 VirtualMemoryTable[Index].VirtualBase = PcdGet64 (PcdSystemMemoryBase);
60 VirtualMemoryTable[Index].Length = PcdGet64 (PcdSystemMemorySize);
61 VirtualMemoryTable[Index].Attributes = CacheAttributes;
64 VirtualMemoryTable[++Index].PhysicalBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
65 VirtualMemoryTable[Index].VirtualBase = SOC_REGISTERS_L3_PHYSICAL_BASE;
66 VirtualMemoryTable[Index].Length = SOC_REGISTERS_L3_PHYSICAL_LENGTH;
67 VirtualMemoryTable[Index].Attributes = SOC_REGISTERS_L3_ATTRIBUTES;
70 VirtualMemoryTable[++Index].PhysicalBase = SOC_REGISTERS_L4_PHYSICAL_BASE; [all...] |
/device/linaro/bootloader/edk2/BeagleBoardPkg/Sec/ |
PadConfiguration.c | 269 UINTN Index;
273 for (Index = 0; Index < NumPinsToConfigure; Index++) {
275 PadConfiguration = (PadConfigurationTable[Index].MuxMode << MUXMODE_OFFSET);
276 PadConfiguration |= (PadConfigurationTable[Index].PullConfig << PULL_CONFIG_OFFSET);
277 PadConfiguration |= (PadConfigurationTable[Index].InputEnable << INPUTENABLE_OFFSET);
280 MmioWrite16(PadConfigurationTable[Index].Pin, PadConfiguration);
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/HiiLib/ |
HiiLib.c | 49 UINTN Index;
65 for (Index = 0; Index < NumberOfPackages; Index++) {
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/ |
Crc32.c | 312 UINTN Index;
320 for (Index = 0, Ptr = Data; Index < DataSize; Index++, Ptr++) {
|
/device/linaro/bootloader/edk2/EmulatorPkg/Library/ThunkPpiList/ |
ThunkPpiList.c | 32 UINTN Index;
38 Index = (gThunkPpiListSize/sizeof (EFI_PEI_PPI_DESCRIPTOR)) - 1;
39 gThunkPpiList[Index].Flags |= EFI_PEI_PPI_DESCRIPTOR_TERMINATE_LIST;
53 UINTN Index;
64 Index = (gThunkPpiListSize/sizeof (EFI_PEI_PPI_DESCRIPTOR));
65 gThunkPpiList[Index].Flags = Flags;
66 gThunkPpiList[Index].Guid = Guid;
67 gThunkPpiList[Index].Ppi = Ppi;
|
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/Misc/ |
InstallConfigurationTable.c | 43 UINTN Index;
58 for (Index = 0; Index < gDxeCoreST->NumberOfTableEntries; Index++) {
59 if (CompareGuid (Guid, &(gDxeCoreST->ConfigurationTable[Index].VendorGuid))) {
64 if (Index < gDxeCoreST->NumberOfTableEntries) {
73 gDxeCoreST->ConfigurationTable[Index].VendorTable = Table;
92 &(EfiConfigurationTable[Index]),
93 &(gDxeCoreST->ConfigurationTable[Index + 1]),
94 (gDxeCoreST->NumberOfTableEntries - Index) * sizeof (EFI_CONFIGURATION_TABLE) [all...] |
Stall.c | 60 UINTN Index;
80 for (Index = 0; Index < 10; Index++) {
|