Searched refs:hashvalue (Results 1 – 3 of 3) sorted by relevance
177 unsigned int hashvalue, index; in hashtable_search() local178 hashvalue = hash(h,k); in hashtable_search()179 index = indexFor(h->tablelength,hashvalue); in hashtable_search()184 if ((hashvalue == e->h) && (h->eqfn(k, e->k))) return e->v; in hashtable_search()200 unsigned int hashvalue, index; in hashtable_remove() local202 hashvalue = hash(h,k); in hashtable_remove()209 if ((hashvalue == e->h) && (h->eqfn(k, e->k))) in hashtable_remove()
33 indexFor(unsigned int tablelength, unsigned int hashvalue) { in indexFor() argument34 return (hashvalue % tablelength); in indexFor()
151 uint8_t hashvalue[20]; member
Completed in 4 milliseconds