Home
last modified time | relevance | path

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

/illumos-gate/usr/src/cmd/svc/svcs/
H A Dsvcs.c284 struct ht_elem **new_ht_buckets; in ht_grow() local
289 new_ht_buckets = 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()
311 ht_buckets = new_ht_buckets; in ht_grow()