Lines Matching refs:bucketBits
20 int bucketBits; /* number of buckets is 1 << bucketBits */
55 ht->bucketBits = INITHASHSIZE;
56 numBuckets = 1 << ht->bucketBits;
76 int numBuckets = 1 << ht->bucketBits;
93 int numBuckets = 1 << ht->bucketBits;
94 int newBucketBits = ht->bucketBits + 1;
116 ht->bucketBits = newBucketBits;
126 unsigned index = ht->hash(ht->cdata, key, ht->bucketBits);
146 if (ht->elements > 4 * (1 << ht->bucketBits) &&
147 ht->bucketBits < MAXHASHSIZE) {
172 unsigned index = ht->hash(ht->cdata, key, ht->bucketBits);
191 unsigned index = ht->hash(ht->cdata, key, ht->bucketBits);
208 int numBuckets = 1 << ht->bucketBits;
281 int numBuckets = 1 << ht->bucketBits;