Home | History | Annotate | Download | only in src

Lines Matching refs:hash

150 void cil_complex_symtab_hash(struct cil_complex_symtab_key *ckey, int mask, intptr_t *hash)
153 *hash = (intptr_t)((sum >> 2) & mask);
169 intptr_t hash;
180 cil_complex_symtab_hash(ckey, symtab->mask, &hash);
182 for (prev = NULL, curr = symtab->htable[hash]; curr != NULL;
214 node->next = symtab->htable[hash];
215 symtab->htable[hash] = node;
227 intptr_t hash;
230 cil_complex_symtab_hash(ckey, symtab->mask, &hash);
231 for (curr = symtab->htable[hash]; curr != NULL; curr = curr->next) {