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

/netbsd-6-1-5-RELEASE/include/
H A Dmpool.h47 #define HASHSIZE 128 macro
48 #define HASHKEY(pgno) ((pgno - 1) % HASHSIZE)
65 CIRCLEQ_HEAD(_hqh, _bkt) hqh[HASHSIZE];
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/src/
H A Dhash.h17 #define HASHSIZE 151 macro
46 Node *hasharray[HASHSIZE];
H A Dhash.c44 return h % HASHSIZE;
65 for (i = 0; i < HASHSIZE; i++)
111 for (i = 0; i < HASHSIZE; i++)
573 (void) printf("List at %p: list = %p, HASHSIZE = %d, next = %p\n",
574 (void *) list, (void *) list->list, HASHSIZE, (void *) list->next);
576 (void) printf("List at 0x%lx: list = 0x%lx, HASHSIZE = %d, next = 0x%lx\n",
577 (unsigned long) list, (unsigned long) list->list, HASHSIZE,
/netbsd-6-1-5-RELEASE/games/battlestar/
H A Dparse.c43 #define HASHSIZE 256 macro
45 #define HASHMASK (HASHSIZE - 1)
51 static struct wlist *hashtab[HASHSIZE];
/netbsd-6-1-5-RELEASE/usr.bin/rdist/
H A Dlookup.c54 static struct syment *hashtab[HASHSIZE];
138 n %= HASHSIZE;
H A Ddefs.h78 #define HASHSIZE 1021 macro
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dstabsread.h43 EXTERN struct symbol *global_sym_chain[HASHSIZE];
H A Dbuildsym.h46 #define HASHSIZE 127 /* Size of things hashed via macro
H A Dstabsread.c4642 for (hash = 0; hash < HASHSIZE; hash++)
4647 if (hash >= HASHSIZE)
4729 for (hash = 0; hash < HASHSIZE; hash++)
H A Dbuildsym.c1285 return (hash(name,strlen(name)) % HASHSIZE);
H A Dcoffread.c127 static struct symbol *opaque_type_chain[HASHSIZE];
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libntp/
H A Dauthkeys.c41 #define HASHSIZE 64 macro
42 #define HASHMASK ((HASHSIZE)-1)
45 struct savekey *key_hash[HASHSIZE];
422 for (i = 0; i < HASHSIZE; i++) {
460 for (i = 0; i < HASHSIZE; i++) {
/netbsd-6-1-5-RELEASE/usr.sbin/sup/source/
H A Dsupcmisc.c62 #define HASHSIZE (1<<HASHBITS) macro
63 #define HASHMASK (HASHSIZE-1)
64 #define LISTSIZE (HASHSIZE*HASHSIZE)
170 /* Hash function is: HASHSIZE * (strlen mod HASHSIZE) +
171 * (char mod HASHSIZE) where "char" is last character of name (if
H A Dsupfilesrv.c282 #define HASHSIZE (1<<HASHBITS) macro
283 #define HASHMASK (HASHSIZE-1)
337 HASH *uidH[HASHSIZE]; /* for uid and gid lookup */
338 HASH *gidH[HASHSIZE];
339 HASH *inodeH[HASHSIZE]; /* for inode lookup for linked file check */
615 for (i = 0; i < HASHSIZE; i++)
1543 for (i = 0; i < HASHSIZE; i++)
/netbsd-6-1-5-RELEASE/gnu/dist/gkermit/
H A Dgwart.c569 #define HASHSIZE 101 /* # of entries in hash table */ macro
575 } *htab[HASHSIZE]; /* the hash table */
584 for (i=0; i<HASHSIZE; i++) htab[i] = NULL;
595 sum %= HASHSIZE; /* take sum mod hashsize */
596 if (sum < 0) sum += HASHSIZE; /* disallow negative hash value */
/netbsd-6-1-5-RELEASE/usr.bin/sockstat/
H A Dsockstat.c94 #define HASHSIZE 1009 macro
95 struct socklist sockhash[HASHSIZE];
399 hash = (int)(kp[i].ki_sockaddr % HASHSIZE);
463 hash = (int)(f->ki_fdata % HASHSIZE);
/netbsd-6-1-5-RELEASE/sbin/restore/
H A Ddirs.c72 #define HASHSIZE 1000 macro
73 #define INOHASH(val) (val % HASHSIZE)
80 static struct inotab *inotab[HASHSIZE];
/netbsd-6-1-5-RELEASE/usr.bin/tsort/
H A Dtsort.c77 #define HASHSIZE 53 /* doesn't need to be big */ macro
/netbsd-6-1-5-RELEASE/lib/libc/db/mpool/
H A Dmpool.c97 for (entry = 0; entry < HASHSIZE; ++entry)
/netbsd-6-1-5-RELEASE/usr.bin/m4/
H A Dmain.c63 ndptr hashtab[HASHSIZE]; /* hash table for macros etc. */
/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c129713 #define HASHSIZE macro
[all...]

Completed in 585 milliseconds