Lines Matching refs:h_nbuckets
44 int h_nbuckets; member
98 hash->h_nbuckets = nbuckets; in hash_new()
108 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_add()
135 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_remove()
145 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_match()
169 int bucket = hash->h_hashfn(hash->h_nbuckets, key); in hash_find_iter()
217 for (i = 0; i < hash->h_nbuckets; i++) { in hash_iter()
234 for (num = 0, i = 0; i < hash->h_nbuckets; i++) in hash_count()
248 for (i = 0; i < hash->h_nbuckets; i++) in hash_free()
267 for (i = 1; i < hash->h_nbuckets; i++) { in hash_stats()
283 printf(" Buckets: %d\n", hash->h_nbuckets); in hash_stats()
286 printf(" Average: %5.2f\n", (float)tot / (float)hash->h_nbuckets); in hash_stats()