Lines Matching refs:numBuckets
43 int numBuckets; in ht_create() local
56 numBuckets = 1 << ht->bucketBits; in ht_create()
57 ht->buckets = xallocarray(numBuckets, sizeof(*ht->buckets)); in ht_create()
61 for (c = 0; c < numBuckets; ++c) { in ht_create()
76 int numBuckets = 1 << ht->bucketBits; in ht_destroy() local
77 for (c = 0; c < numBuckets; ++c) { in ht_destroy()
93 int numBuckets = 1 << ht->bucketBits; in double_size() local
104 for (c = 0; c < numBuckets; ++c) { in double_size()
208 int numBuckets = 1 << ht->bucketBits; in ht_dump_distribution() local
209 for (c = 0; c < numBuckets; ++c) { in ht_dump_distribution()
281 int numBuckets = 1 << ht->bucketBits; in ht_dump_contents() local
282 for (c = 0; c < numBuckets; ++c) { in ht_dump_contents()