Searched refs:symbol_hash (Results 1 – 6 of 6) sorted by relevance
17 extern struct symbol * symbol_hash[SYMBOL_HASHSIZE];
822 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_lookup()841 symbol->next = symbol_hash[hash]; in sym_lookup()842 symbol_hash[hash] = symbol; in sym_lookup()864 for (symbol = symbol_hash[hash]; symbol; symbol = symbol->next) { in sym_find()
134 #define for_all_symbols(i, sym) for (i = 0; i < SYMBOL_HASHSIZE; i++) for (sym = symbol_hash[i]; sy…
30 struct symbol *symbol_hash[SYMBOL_HASHSIZE]; variable
315 static size_t symbol_hash(const void *key, void *ctx __maybe_unused) in symbol_hash() function345 map = hashmap__new(symbol_hash, symbol_equal, NULL); in get_syms()
99 struct hlist_head *symbol_hash; member