Home
last modified time | relevance | path

Searched refs:new_ht_buckets_num (Results 1 – 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/svc/svcs/
H A Dsvcs.c283 uint_t new_ht_buckets_num; in ht_grow() local
287 new_ht_buckets_num = ht_buckets_num * 2; in ht_grow()
288 assert(new_ht_buckets_num > ht_buckets_num); in ht_grow()
290 safe_malloc(sizeof (*new_ht_buckets) * new_ht_buckets_num); in ht_grow()
291 bzero(new_ht_buckets, sizeof (*new_ht_buckets) * new_ht_buckets_num); in ht_grow()
304 new_ht_buckets[h & (new_ht_buckets_num - 1)]; in ht_grow()
305 new_ht_buckets[h & (new_ht_buckets_num - 1)] = elem; in ht_grow()
312 ht_buckets_num = new_ht_buckets_num; in ht_grow()