Lines Matching refs:Index
159 UINTN Index;
168 for (Index = 0; Index < Size; Index += 1) {
169 TempByte = Data[Index];
170 Val[Index * 3 + 0] = Hex[TempByte >> 4];
171 Val[Index * 3 + 1] = Hex[TempByte & 0xF];
172 Val[Index * 3 + 2] = (CHAR8) ((Index == 7) ? '-' : ' ');
173 Str[Index] = (CHAR8) ((TempByte < ' ' || TempByte > 'z') ? '.' : TempByte);
176 Val[Index * 3] = 0;
177 Str[Index] = 0;
233 UINTN Index;
236 for (Index = 0; Index < gST->NumberOfTableEntries; Index++) {
237 if (CompareGuid (TableGuid, &(gST->ConfigurationTable[Index].VendorGuid))) {
238 *Table = gST->ConfigurationTable[Index].VendorTable;
445 UINTN Index;
451 for (Len = 0, Index = StrLen (Name) - 1; Index + 1 != 0; Index--, Len++) {
452 if (Name[Index] == '\\' || Name[Index] == ':') {
463 for (Index = 0; Index < StrLen (Name); Index++) {
464 if (!IsValidFileNameChar (Name[Index])) {