Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libipmi/common/
H A Dipmi_hash.c104 if ((ihp->ih_buckets = ipmi_zalloc(hp, in ipmi_hash_create()
117 ipmi_free(ihp->ih_handle, ihp->ih_buckets); in ipmi_hash_destroy()
193 while ((link = ihp->ih_buckets[idx]) != NULL) { in ipmi_hash_resize()
201 ihp->ih_buckets[idx] = link->ihl_next; in ipmi_hash_resize()
210 ipmi_free(hp, ihp->ih_buckets); in ipmi_hash_resize()
211 ihp->ih_buckets = nbuckets; in ipmi_hash_resize()
220 for (hl = ihp->ih_buckets[idx]; hl != NULL; hl = hl->ihl_next) { in ipmi_hash_lookup()
260 link->ihl_next = ihp->ih_buckets[idx]; in ipmi_hash_insert()
261 ihp->ih_buckets[idx] = link; in ipmi_hash_insert()
274 ipmi_hash_link_t **hlp = &ihp->ih_buckets[idx]; in ipmi_hash_remove()
H A Dipmi_impl.h49 ipmi_hash_link_t **ih_buckets; /* array of buckets */ member