Lines Matching defs:newbits
89 hashtable_rehash(isc_ht_t *ht, uint32_t newbits);
167 uint32_t newbits = ht->hashbits[ht->hindex];
169 while (newcount >= HASHSIZE(newbits) && newbits <= HT_MAX_BITS) {
170 newbits += 1;
173 return (newbits);
180 hashtable_rehash(isc_ht_t *ht, uint32_t newbits) {
189 REQUIRE(newbits <= HT_MAX_BITS);
193 REQUIRE(newbits > oldbits);
195 hashtable_new(ht, newindex, newbits);
238 uint32_t newbits = rehash_bits(ht, newcount);
240 if (ht->hashbits[ht->hindex] < newbits && newbits <= HT_MAX_BITS) {
241 hashtable_rehash(ht, newbits);