Searched refs:HASHSIZE (Results 1 - 11 of 11) sorted by relevance

/freebsd-current/include/
H A Dmpool.h44 #define HASHSIZE 128 macro
45 #define HASHKEY(pgno) ((pgno - 1 + HASHSIZE) % HASHSIZE)
63 TAILQ_HEAD(_hqh, _bkt) hqh[HASHSIZE];
/freebsd-current/lib/libthr/thread/
H A Dthr_sleepq.c33 #define HASHSIZE (1 << HASHSHIFT) macro
37 & (HASHSIZE - 1)))
47 static struct sleepqueue_chain sc_table[HASHSIZE];
54 for (i = 0; i < HASHSIZE; ++i) {
/freebsd-current/sys/netgraph/
H A Dng_etf.c139 #define HASHSIZE 16 /* Dont change this without changing HASH() */ macro
151 struct filterhead hashtable[HASHSIZE];
182 for (i = 0; i < HASHSIZE; i++) {
455 for (i = 0; i < HASHSIZE; i++) {
/freebsd-current/sbin/restore/
H A Ddirs.c62 #define HASHSIZE 1000 macro
63 #define INOHASH(val) (val % HASHSIZE)
70 static struct inotab *inotab[HASHSIZE];
/freebsd-current/sbin/fsck_ffs/
H A Dfsck.h145 #define HASHSIZE 2048 macro
146 #define HASH(x) ((x * 2654435761) & (HASHSIZE - 1))
H A Dsuj.c97 struct blkhd sc_blkhash[HASHSIZE];
98 struct inohd sc_inohash[HASHSIZE];
107 static LIST_HEAD(cghd, suj_cg) cghash[HASHSIZE];
1555 for (i = 0; i < HASHSIZE; i++)
1570 for (i = 0; i < HASHSIZE; i++) {
1590 for (i = 0; i < HASHSIZE; i++) {
1609 for (i = 0; i < HASHSIZE; i++)
1624 for (i = 0; i < HASHSIZE; i++)
1635 for (i = 0; i < HASHSIZE; i++)
2538 for (i = 0; i < HASHSIZE;
[all...]
H A Dfsutil.c74 static LIST_HEAD(bufhash, bufarea) bufhashhd[HASHSIZE]; /* buffer hash list */
191 for (i = 0; i < HASHSIZE; i++)
/freebsd-current/stand/ficl/
H A Dficl.h149 ** - Make the main hash table a bigger prime (HASHSIZE)
679 #if !defined HASHSIZE /* Default size of hash table. For most uniform */
680 #define HASHSIZE 241 /* performance, use a prime number! */ macro
H A Dficl.c115 pSys->dp = dictCreateHashed((unsigned)nDictCells, HASHSIZE);
/freebsd-current/lib/libc/db/mpool/
H A Dmpool.c82 for (entry = 0; entry < HASHSIZE; ++entry)
/freebsd-current/contrib/sqlite3/
H A Dsqlite3.c208601 #define HASHSIZE macro
[all...]

Completed in 615 milliseconds