Home
last modified time | relevance | path

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

/netbsd-src/usr.bin/du/
H A Ddu.c288 static int htmask; /* allocated size - 1 */ in linkchk() local
307 if (htused<<1 >= htmask) { in linkchk()
315 htmask = (1 << htshift) - 1; in linkchk()
319 htable = calloc(htmask+1, sizeof(*htable)); in linkchk()
326 for (i = 0; i <= htmask>>1; i++) in linkchk()
345 h = (h + h2) & htmask; in linkchk()
/netbsd-src/usr.sbin/makefs/
H A Dwalk.c771 static size_t htmask; /* allocated size - 1 */ in link_check()
785 if (htused<<1 >= htmask) { in link_check()
793 htmask = (1 << htshift) - 1;
797 htable = ecalloc(htmask+1, sizeof(*htable));
800 for (size_t i = 0; i <= htmask>>1; i++)
821 h = (h + h2) & htmask;
732 static size_t htmask; /* allocated size - 1 */ link_check() local