Lines Matching refs:hash_code
298 int hash_code = hashCode (key); in get() local
299 for (Hash_t *p = hashTable[hash_code]; p; p = p->next) in get()
310 int hash_code = hashCode (key); in values() local
311 for (Hash_t *p = hashTable[hash_code]; p; p = p->next) in values()
323 int hash_code = hashCode (key); in get() local
325 for (p = hashTable[hash_code]; p; p = p->next) in get()
347 p->next = hashTable[hash_code]; in get()
348 hashTable[hash_code] = p; in get()
357 int hash_code = hashCode (key); in remove() local
359 for (Hash_t *prev = NULL, *p = hashTable[hash_code]; p != NULL;) in remove()
364 hashTable[hash_code] = p->next; in remove()
385 int hash_code = hashCode (key); in put() local
387 for (Hash_t *p = hashTable[hash_code]; p != NULL; p = p->next) in put()
399 p->next = hashTable[hash_code]; in put()
400 hashTable[hash_code] = p; in put()