Lines Matching defs:newbits
90 hashtable_rehash(isc_ht_t *ht, uint32_t newbits);
127 uint32_t newbits = ht->hashbits[ht->hindex];
129 while (newcount >= HASHSIZE(newbits) && newbits <= HT_MAX_BITS) {
130 newbits += 1;
133 return newbits;
140 hashtable_rehash(isc_ht_t *ht, uint32_t newbits) {
149 REQUIRE(newbits <= HT_MAX_BITS);
153 REQUIRE(newbits > oldbits);
155 hashtable_new(ht, newindex, newbits);
198 uint32_t newbits = rehash_bits(ht, newcount);
200 if (ht->hashbits[ht->hindex] < newbits && newbits <= HT_MAX_BITS) {
201 hashtable_rehash(ht, newbits);