Home | History | Annotate | Download | only in MC

Lines Matching refs:Table

136 /// getLongestEntryLength - Return the length of the longest entry in the table.
138 static size_t getLongestEntryLength(const SubtargetFeatureKV *Table,
142 MaxLen = std::max(MaxLen, std::strlen(Table[i].Key));
154 // Print the CPU table.
161 // Print the Feature table.
231 // Find feature in table.
270 "CPU table is not sorted");
274 "CPU features table is not sorted");
312 // Find feature in table.
341 const SubtargetInfoKV *Table,
343 assert(Table && "missing table");
346 assert(strcmp(Table[i - 1].Key, Table[i].Key) < 0 && "Table is not sorted");
351 const SubtargetInfoKV *Entry = Find(CPU, Table, TableSize);