Home
last modified time | relevance | path

Searched refs:HASHSIZE (Results 1 – 19 of 19) sorted by relevance

/original-bsd/include/
H A Dmpool.h18 #define HASHSIZE 128 macro
19 #define HASHKEY(pgno) ((pgno - 1) % HASHSIZE)
46 BKTHDR hashtable[HASHSIZE]; /* Hashed list by page number. */
/original-bsd/old/make/
H A Dmisc.c5 FSTATIC struct nameblock *hashtab[HASHSIZE];
24 hashval %= HASHSIZE;
28 i = (i+1)%HASHSIZE ) ;
50 if(nhashed++ > HASHSIZE-3)
H A Ddefs25 #define HASHSIZE 1021
/original-bsd/games/battlestar/
H A Dextern.h260 #define HASHSIZE 256 macro
262 #define HASHMASK (HASHSIZE - 1)
263 struct wlist *hashtab[HASHSIZE];
/original-bsd/usr.bin/rdist/
H A Dlookup.c25 static struct syment *hashtab[HASHSIZE];
111 n %= HASHSIZE;
H A Ddefs.h55 #define HASHSIZE 1021 macro
/original-bsd/contrib/bib/src/
H A Dbib.h81 #define HASHSIZE 509 macro
H A Dlistrefs.c35 struct refinfo *refshash[HASHSIZE];
H A Dbibargs.c55 struct wordinfo *wordhash[HASHSIZE];
324 for (i=0; i<HASHSIZE; i++) {
713 value %= HASHSIZE;
715 value += HASHSIZE;
H A Dbib.c43 struct refinfo *refshash[HASHSIZE];
/original-bsd/usr.bin/m4/
H A Dmdef.h78 #define HASHSIZE 199 /* maximum size of hashtab */ macro
H A Dlook.c36 return (h % HASHSIZE);
H A Dmain.c39 ndptr hashtab[HASHSIZE]; /* hash table for macros etc. */
371 for (p = hashtab[h%HASHSIZE]; p != nil; p = p->nxtptr)
H A Dserv.c184 for (n = 0; n < HASHSIZE; n++)
H A Deval.c496 for (n = 0; n < HASHSIZE; n++)
/original-bsd/sbin/restore/
H A Ddirs.c42 #define HASHSIZE 1000 macro
43 #define INOHASH(val) (val % HASHSIZE)
50 static struct inotab *inotab[HASHSIZE];
/original-bsd/usr.bin/tsort/
H A Dtsort.c50 #define HASHSIZE 53 /* doesn't need to be big */ macro
/original-bsd/lib/libc/db/mpool/
H A Dmpool.c70 for (entry = 0; entry < HASHSIZE; ++entry)
/original-bsd/contrib/gcc-2.3.3/
H A Dcccp.c748 #define HASHSIZE 1403 macro
749 static HASHNODE *hashtab[HASHSIZE];
2753 for (hp = hashtab[MAKE_POS (hash) % HASHSIZE]; hp != NULL;
4803 hashcode = hashf (mdef.symnam, mdef.symlen, HASHSIZE);
7886 hash = hashf (name, len, HASHSIZE);
7937 hash = hashf (name, len, HASHSIZE);
8070 for (bucket = 0; bucket < HASHSIZE; bucket++) { in dump_all_macros()