Searched refs:HASHSTEP (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/sys/sys/
H A Dhash.h36 #define HASHSTEP(x,c) (((x << 5) + x) + (c)) macro
50 hash = HASHSTEP(hash, *p++);
64 hash = HASHSTEP(hash, *p++);
78 hash = HASHSTEP(hash, *p++);
94 hash = HASHSTEP(hash, *p++);
114 hash = HASHSTEP(hash, *p++);
/freebsd-11-stable/usr.bin/grep/regex/
H A Dhashtable.h14 #define HASHSTEP(x,c) (((x << 5) + x) + (c)) macro
H A Dhashtable.c52 hash = HASHSTEP(hash, *p++);
/freebsd-11-stable/sys/rpc/
H A Dreplay.c178 int h = HASHSTEP(HASHINIT, msg->rm_xid) % REPLAY_HASH_SIZE;
232 int h = HASHSTEP(HASHINIT, repmsg->rm_xid) % REPLAY_HASH_SIZE;
H A Dauth_unix.c143 th = HASHSTEP(HASHINIT, tau->au_xcred.cr_uid)
156 h = HASHSTEP(HASHINIT, cred->cr_uid) % AUTH_UNIX_HASH_SIZE;
/freebsd-11-stable/sys/kern/
H A Dkern_lockf.c302 h = HASHSTEP(0, fl->l_pid);
303 h = HASHSTEP(h, fl->l_sysid);
308 h = HASHSTEP(0, p->p_pid);
309 h = HASHSTEP(h, 0);
/freebsd-11-stable/sys/rpc/rpcsec_gss/
H A Drpcsec_gss.c180 h = HASHSTEP(HASHINIT, cred->cr_uid);
183 h = HASHSTEP(h, (int) service);

Completed in 221 milliseconds