Searched refs:dh_hlen (Results 1 – 2 of 2) sorted by relevance
401 dh->dh_hlen = nslots; in ufsdirhash_build()455 slot = WRAPINCR(slot, dh->dh_hlen); in ufsdirhash_build()608 i = WRAPINCR(i, dh->dh_hlen)) in ufsdirhash_lookup()623 slot = WRAPINCR(slot, dh->dh_hlen)) { in ufsdirhash_lookup()819 if (dh->dh_hused >= (dh->dh_hlen * 3) / 4) { in ufsdirhash_add()827 slot = WRAPINCR(slot, dh->dh_hlen); in ufsdirhash_add()1045 return (hash % dh->dh_hlen); in ufsdirhash_hash()1100 KASSERT(dh->dh_hused < dh->dh_hlen, ("dirhash find full")); in ufsdirhash_findslot()1104 slot = WRAPINCR(slot, dh->dh_hlen); in ufsdirhash_findslot()1128 i = WRAPINCR(i, dh->dh_hlen); in ufsdirhash_delslot()[all …]
91 int dh_hlen; /* total slots in the 2-level hash array */ member