Lines Matching refs:hash
152 static void cil_complex_symtab_hash(struct cil_complex_symtab_key *ckey, int mask, intptr_t *hash)
155 *hash = (intptr_t)((sum >> 2) & mask);
171 intptr_t hash;
182 cil_complex_symtab_hash(ckey, symtab->mask, &hash);
184 for (prev = NULL, curr = symtab->htable[hash]; curr != NULL;
217 node->next = symtab->htable[hash];
218 symtab->htable[hash] = node;
230 intptr_t hash;
233 cil_complex_symtab_hash(ckey, symtab->mask, &hash);
234 for (curr = symtab->htable[hash]; curr != NULL; curr = curr->next) {