Searched refs:table (Results 1 – 5 of 5) sorted by relevance
/scripts/include/ |
A D | hashtable.h | 16 #define hash_head(table, key) (&(table)[(key) % HASH_SIZE(table)]) argument 33 #define hash_init(table) __hash_init(table, HASH_SIZE(table)) argument 41 #define hash_add(table, node, key) \ argument 42 hlist_add_head(node, hash_head(table, key)) 59 #define hash_for_each(table, obj, member) \ argument 60 for (int _bkt = 0; _bkt < HASH_SIZE(table); _bkt++) \ 61 hlist_for_each_entry(obj, &table[_bkt], member) 71 #define hash_for_each_safe(table, obj, tmp, member) \ argument 72 for (int _bkt = 0; _bkt < HASH_SIZE(table); _bkt++) \ 73 hlist_for_each_entry_safe(obj, tmp, &table[_bkt], member) [all …]
|
/scripts/mod/ |
A D | symsearch.c | 27 struct syminfo table[]; member 69 struct syminfo *table, in symsearch_populate() argument 80 table->addr = sym->st_value; in symsearch_populate() 88 table->addr &= ~1; in symsearch_populate() 90 table++; in symsearch_populate() 117 if (table[i].addr == table[i - 1].addr && in symsearch_fixup() 118 table[i].section_index == table[i - 1].section_index) { in symsearch_fixup() 119 table[i].symbol_index = table[i - 1].symbol_index; in symsearch_fixup() 133 qsort(elf->symsearch->table, table_size, in symsearch_init() 159 struct syminfo *table = elf->symsearch->table; in symsearch_find_nearest() local [all …]
|
/scripts/ |
A D | kallsyms.c | 239 table[pos] = table[i]; in shrink_table() 242 free(table[i]); in shrink_table() 270 table = xrealloc(table, sizeof(*table) * table_size); in read_map() 336 qsort(table, table_cnt, sizeof(table[0]), compare_names); in sort_symbols_by_name() 371 table[i]->seq = i; in write_src() 406 expand_symbol(table[i]->sym, table[i]->len, buf); in write_src() 450 table[i]->addr); in write_src() 503 learn_symbol(table[i]->sym, table[i]->len); in build_initial_token_table() 527 len = table[i]->len; in compress_symbols() 528 p1 = table[i]->sym; in compress_symbols() [all …]
|
A D | check-sysctl-docs | 16 if (!table) { 128 if (debug) print "Adding entry " curentry " to table " curtable 143 if (debug) print "Registering table " tables[3] " at " tables[2] 153 if (debug) print "Found variable " names[1] " for table " names[2] 162 if (tables[1] == table && tables[2] in vars) {
|
A D | get_feat.pl | 203 $data{$name}->{table} = \%arch_table; 250 my %arch_table = %{$data{$name}->{table}}; 282 my %arch_table = %{$data{$name}->{table}}; 335 my %arch_table = %{$data{$feat}->{table}}; 429 my %arch_table = %{$data{$name}->{table}};
|
Completed in 6 milliseconds