HomeSort by: relevance | last modified time | path
    Searched defs:FUHASH (Results 1 - 2 of 2) sorted by relevancy

  /src/usr.sbin/repquota/
repquota.c 86 #define FUHASH 1024 /* must be power of two */
87 static struct fileusage *fuhead[REPQUOTA_NUMIDTYPES][FUHASH];
473 for (fup = fuhead[idtype][id & (FUHASH-1)]; fup != 0; fup = fup->fu_next)
486 for (fupp = &fuhead[idtype][id & (FUHASH-1)]; *fupp != 0;) {
535 fhp = &fuhead[idtype][id & (FUHASH - 1)];
  /src/usr.sbin/quotacheck/
quotacheck.c 120 #define FUHASH 1024 /* must be power of two */
121 static struct fileusage *fuhead[MAXQUOTAS][FUHASH];
666 for (fup = fuhead[type][id & (FUHASH-1)]; fup != 0; fup = fup->fu_next)
689 fhp = &fuhead[type][id & (FUHASH - 1)];
710 cup = iup = &fuhead[type][id & (FUHASH-1)];
713 if (++cup >= &fuhead[type][FUHASH])

Completed in 12 milliseconds