Searched refs:new_bucket (Results 1 – 1 of 1) sorted by relevance
217 unsigned new_bucket = full_hash % pNewSize; in doRehash() local218 if (bucket_type::getEmptyBucket() == new_table[new_bucket].Entry) { in doRehash()219 new_table[new_bucket].Entry = IB->Entry; in doRehash()220 new_table[new_bucket].FullHashValue = full_hash; in doRehash()227 new_bucket += probe; in doRehash()228 if (new_bucket == pNewSize) in doRehash()229 new_bucket = 0; in doRehash()230 } while (new_table[new_bucket].Entry != bucket_type::getEmptyBucket()); in doRehash()233 new_table[new_bucket].Entry = IB->Entry; in doRehash()234 new_table[new_bucket].FullHashValue = full_hash; in doRehash()