Lines Matching refs:h_nbuckets
44 int h_nbuckets; member
99 hash->h_nbuckets = nbuckets; in hash_new()
109 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_add()
137 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_remove()
147 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_match()
172 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_find_iter()
221 for (i = 0; i < hash->h_nbuckets; i++) { in hash_iter()
238 for (num = 0, i = 0; i < hash->h_nbuckets; i++) in hash_count()
252 for (i = 0; i < hash->h_nbuckets; i++) in hash_free()
271 for (i = 1; i < hash->h_nbuckets; i++) { in hash_stats()
287 printf(" Buckets: %d\n", hash->h_nbuckets); in hash_stats()
290 printf(" Average: %5.2f\n", (float)tot / (float)hash->h_nbuckets); in hash_stats()