Lines Matching refs:hash_value
204 size_t hash_value; in hash_table_modify() local
209 hash_value = hash_table_hash_key(h, k); in hash_table_modify()
211 for (node = h->buckets[hash_value % hash_table_total_buckets(h)]; in hash_table_modify()
237 hash_value = hash_value % hash_table_total_buckets(h); in hash_table_modify()
238 h->buckets[hash_value] = X_PFX(list_prepend) (h->buckets[hash_value], in hash_table_modify()
255 size_t hash_value; in X_PFX() local
260 hash_value = hash_table_hash_key(h, k); in X_PFX()
262 for (ptr = &h->buckets[hash_value % hash_table_total_buckets(h)]; in X_PFX()
280 size_t hash_value; in X_PFX() local
285 hash_value = hash_table_hash_key(h, k); in X_PFX()
287 for (node = h->buckets[hash_value % hash_table_total_buckets(h)]; in X_PFX()