Lines Matching defs:sym_entry
81 struct hash_entry *sym_entry = table[hash_val];
85 while (sym_entry) {
86 if (!strcmp (sym, sym_entry->name)) { /* entry already exists */
90 sym_entry = sym_entry->next;
151 struct hash_entry *sym_entry =
155 while (sym_entry) {
156 if (!strcmp (sym, sym_entry->name))
157 return sym_entry;
158 sym_entry = sym_entry->next;