Lines Matching refs:ih_nbuckets
100 ihp->ih_nbuckets = IPMI_HASHMINSIZE;
107 ihp->ih_nbuckets * sizeof (void *))) == NULL) {
166 return (ihp->ih_compute(ihp->ih_convert(elem)) % ihp->ih_nbuckets);
172 size_t osize = ihp->ih_nbuckets;
192 ihp->ih_nbuckets = nsize;
219 ulong_t idx = ihp->ih_compute(search) % ihp->ih_nbuckets;
267 if (++ihp->ih_nelements > ihp->ih_nbuckets / 2)
268 ipmi_hash_resize(ihp, ipmi_hash_double(ihp->ih_nbuckets));
290 if (--ihp->ih_nelements < ihp->ih_nbuckets / 4)
291 ipmi_hash_resize(ihp, ipmi_hash_half(ihp->ih_nbuckets));