Home
last modified time | relevance | path

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

/freebsd/sys/ufs/ufs/
H A Dufs_dirhash.c401 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()
1104 slot = WRAPINCR(slot, dh->dh_hlen); in ufsdirhash_findslot()
1128 i = WRAPINCR(i, dh->dh_hlen); in ufsdirhash_delslot()
1130 i = WRAPDECR(i, dh->dh_hlen); in ufsdirhash_delslot()
[all …]
H A Ddirhash.h91 int dh_hlen; /* total slots in the 2-level hash array */ member