Lines Matching defs:hashline
144 uint32_t hashline;
152 for (hashline = 0; hashline < DIRHASH_HASHSIZE; hashline++) {
153 while ((dirh_e = LIST_FIRST(&dirh->entries[hashline]))
197 uint32_t hashline;
203 for (hashline = 0; hashline < DIRHASH_HASHSIZE; hashline++) {
204 LIST_INIT(&dirh->entries[hashline]);
236 uint32_t hashvalue, hashline;
250 hashline = hashvalue & DIRHASH_HASHMASK;
253 LIST_FOREACH(dirh_e, &dirh->entries[hashline], next) {
298 /* add to the hashline */
309 LIST_INSERT_HEAD(&dirh->entries[hashline], dirh_e, next);
346 uint32_t hashvalue, hashline;
359 hashline = hashvalue & DIRHASH_HASHMASK;
362 LIST_FOREACH(dirh_e, &dirh->entries[hashline], next) {
395 uint32_t hashvalue, hashline;
409 /* calculate our hash and lookup all entries in hashline */
411 hashline = hashvalue & DIRHASH_HASHMASK;
412 dirh_e = LIST_FIRST(&dirh->entries[hashline]);
470 int hashline, num;
473 for (hashline = 0; hashline < DIRHASH_HASHSIZE; hashline++) {
474 LIST_FOREACH(dirh_e, &dirh->entries[hashline], next) {