Searched refs:ht_buckets_num (Results 1 – 1 of 1) sorted by relevance
223 static uint_t ht_buckets_num = 0; variable232 for (i = 0; i < ht_buckets_num; i++) { in ht_free()241 ht_buckets_num = 0; in ht_free()250 ht_buckets_num = 8; in ht_init()251 ht_buckets = safe_malloc(sizeof (*ht_buckets) * ht_buckets_num); in ht_init()252 bzero(ht_buckets, sizeof (*ht_buckets) * ht_buckets_num); in ht_init()287 new_ht_buckets_num = ht_buckets_num * 2; in ht_grow()288 assert(new_ht_buckets_num > ht_buckets_num); in ht_grow()293 for (i = 0; i < ht_buckets_num; ++i) { in ht_grow()312 ht_buckets_num = new_ht_buckets_num; in ht_grow()[all …]