Home
last modified time | relevance | path

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

/mirbsd/src/sys/ufs/ufs/
Dufs_ihash.c49 u_long ihash; /* size of hash table - 1 */
50 #define INOHASH(device, inum) (&ihashtbl[((device) + (inum)) & ihash])
60 ihashtbl = hashinit(desiredvnodes, M_UFSMNT, M_WAITOK, &ihash); in ufs_ihashinit()
/mirbsd/src/gnu/usr.bin/rcs/src/
Drcslex.c238 register unsigned ihash; /* index into hashtable */ local
244 ihash = 0;
246 ihash = (ihash<<2) + *sp++;
247 ihash %= hshsize;
249 for (p = &hshtab[ihash]; ; p = &n->nexthsh)
256 printf("\nEntered: %s at %u ", str, ihash);