Searched refs:new_bucket (Results 1 – 1 of 1) sorted by relevance
236 unsigned new_bucket = full_hash % pNewSize; in doRehash() local237 if (bucket_type::getEmptyBucket() == new_table[new_bucket].Entry) { in doRehash()238 new_table[new_bucket].Entry = IB->Entry; in doRehash()239 new_table[new_bucket].FullHashValue = full_hash; in doRehash()246 new_bucket += probe; in doRehash()247 if (new_bucket == pNewSize) in doRehash()248 new_bucket = 0; in doRehash()249 } while (new_table[new_bucket].Entry != bucket_type::getEmptyBucket()); in doRehash()252 new_table[new_bucket].Entry = IB->Entry; in doRehash()253 new_table[new_bucket].FullHashValue = full_hash; in doRehash()