Home
last modified time | relevance | path

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

/freebsd/usr.sbin/repquota/
H A Drepquota.c78 #define FUHASH 1024 /* must be power of two */ macro
79 static struct fileusage *fuhead[MAXQUOTAS][FUHASH];
292 for (fup = fuhead[type][id & (FUHASH-1)]; fup != 0; fup = fup->fu_next) in lookup()
315 fhp = &fuhead[type][id & (FUHASH - 1)]; in addid()
/freebsd/sbin/quotacheck/
H A Dquotacheck.c95 #define FUHASH 1024 /* must be power of two */
96 struct fileusage *fuhead[MAXQUOTAS][FUHASH];
460 for (id = 0; id < FUHASH; id++) { in update()
527 for (fup = fuhead[type][id & (FUHASH-1)]; fup != NULL; fup = fup->fu_next) in lookup()
550 fhp = &fuhead[type][id & (FUHASH - 1)]; in addid()
99 #define FUHASH global() macro