Searched refs:new_ht_buckets_num (Results 1 – 1 of 1) sorted by relevance
278 uint_t new_ht_buckets_num; in ht_grow() local282 new_ht_buckets_num = ht_buckets_num * 2; in ht_grow()283 assert(new_ht_buckets_num > ht_buckets_num); in ht_grow()285 safe_malloc(sizeof (*new_ht_buckets) * new_ht_buckets_num); in ht_grow()286 bzero(new_ht_buckets, sizeof (*new_ht_buckets) * new_ht_buckets_num); in ht_grow()299 new_ht_buckets[h & (new_ht_buckets_num - 1)]; in ht_grow()300 new_ht_buckets[h & (new_ht_buckets_num - 1)] = elem; in ht_grow()307 ht_buckets_num = new_ht_buckets_num; in ht_grow()