Symbol: HASHSIZE
usr/src/cmd/backup/restore/dirs.c
27
#define INOHASH(val) (val % HASHSIZE)
usr/src/cmd/backup/restore/dirs.c
35
static struct inotab *inotab[HASHSIZE];
usr/src/cmd/cmd-crypto/tpmadm/admin_cmds.c
354
hash_node_t *hash_table[HASHSIZE];
usr/src/cmd/cmd-crypto/tpmadm/admin_cmds.c
366
index = index % HASHSIZE;
usr/src/cmd/cmd-inet/usr.bin/rdist/lookup.c
117
n %= HASHSIZE;
usr/src/cmd/cmd-inet/usr.bin/rdist/lookup.c
31
static struct syment *hashtab[HASHSIZE];
usr/src/cmd/spell/hash.c
46
static long hashsize = HASHSIZE;
usr/src/cmd/tar/tar.c
6244
static cachenode_t *names[HASHSIZE];
usr/src/cmd/tar/tar.c
6245
static cachenode_t *groups[HASHSIZE];
usr/src/cmd/tar/tar.c
6246
static cachenode_t *uids[HASHSIZE];
usr/src/cmd/tar/tar.c
6247
static cachenode_t *gids[HASHSIZE];
usr/src/cmd/tar/tar.c
6269
for (c = table[h & (HASHSIZE - 1)]; c != NULL; c = c->next) {
usr/src/cmd/tar/tar.c
6282
for (c = table[h & (HASHSIZE - 1)]; c != NULL; c = c->next) {
usr/src/cmd/tar/tar.c
6309
c->next = table[signature & (HASHSIZE - 1)];
usr/src/cmd/tar/tar.c
6310
table[signature & (HASHSIZE - 1)] = c;
usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/rc_common.h
28
#ifndef HASHSIZE
usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/rc_file.c
217
t->hsize = HASHSIZE; /* no need to store---it's memory-only */
usr/src/lib/gss_mechs/mech_krb5/krb5/rcache/rc_mem.c
212
t->hsize = HASHSIZE; /* no need to store---it's memory-only */
usr/src/lib/krb5/plugins/kdb/db2/libdb2/mpool/mpool.c
85
for (entry = 0; entry < HASHSIZE; ++entry)
usr/src/lib/krb5/plugins/kdb/db2/libdb2/mpool/mpool.h
58
#define HASHKEY(pgno) ((pgno - 1) % HASHSIZE)
usr/src/lib/krb5/plugins/kdb/db2/libdb2/mpool/mpool.h
76
CIRCLEQ_HEAD(_hqh, _bkt) hqh[HASHSIZE];
usr/src/lib/libpkg/common/ncgrpw.c
123
if (init_cache(&grnam_cache, HASHSIZE, BSZ,
usr/src/lib/libpkg/common/ncgrpw.c
190
if (init_cache(&pwnam_cache, HASHSIZE, BSZ,
usr/src/lib/libpkg/common/ncgrpw.c
282
if (init_cache(&grgid_cache, HASHSIZE, BSZ,
usr/src/lib/libpkg/common/ncgrpw.c
346
if (init_cache(&pwuid_cache, HASHSIZE, BSZ,
usr/src/lib/libproc/common/Pcontrol.c
1254
for (i = 0; i < HASHSIZE; i++) {
usr/src/lib/libproc/common/Pcontrol.c
3219
for (Lp = &P->hashtab[lwpid % (HASHSIZE - 1)];
usr/src/lib/libproc/common/Pcontrol.c
3260
(P->hashtab = calloc(HASHSIZE, sizeof (struct ps_lwphandle *)))
usr/src/uts/common/crypto/api/kcf_random.c
600
uint32_t rm_key[HASHSIZE/BYTES_IN_WORD]; /* FIPS XKEY */
usr/src/uts/common/crypto/api/kcf_random.c
601
uint32_t rm_seed[HASHSIZE/BYTES_IN_WORD]; /* seed for rekey */
usr/src/uts/common/crypto/api/kcf_random.c
602
uint32_t rm_previous[HASHSIZE/BYTES_IN_WORD]; /* prev random */
usr/src/uts/common/crypto/api/kcf_random.c
627
uint32_t tempout[HASHSIZE/BYTES_IN_WORD];
usr/src/uts/common/crypto/api/kcf_random.c
628
uint32_t seed[HASHSIZE/BYTES_IN_WORD];
usr/src/uts/common/crypto/api/kcf_random.c
641
nblock = howmany(len, HASHSIZE);
usr/src/uts/common/crypto/api/kcf_random.c
685
for (i = 0; i < HASHSIZE; i++) {
usr/src/uts/common/crypto/api/kcf_random.c
689
bcopy(rmp->rm_mag.rm_seed, seed, HASHSIZE);
usr/src/uts/common/crypto/api/kcf_random.c
694
if (bytes >= HASHSIZE) {
usr/src/uts/common/crypto/api/kcf_random.c
695
size = HASHSIZE;
usr/src/uts/common/crypto/api/kcf_random.c
697
size = min(bytes, HASHSIZE);
usr/src/uts/common/crypto/api/kcf_random.c
706
for (i = 0; i < HASHSIZE/BYTES_IN_WORD; i++) {
usr/src/uts/common/crypto/api/kcf_random.c
710
if (i == HASHSIZE/BYTES_IN_WORD) {
usr/src/uts/common/crypto/api/kcf_random.c
720
HASHSIZE);
usr/src/uts/common/crypto/api/kcf_random.c
730
bzero(seed, HASHSIZE);
usr/src/uts/common/crypto/api/kcf_random.c
731
bzero(tempout, HASHSIZE);
usr/src/uts/common/crypto/api/kcf_random.c
823
rndbuf_len = roundup(rndbuf_len, HASHSIZE);
usr/src/uts/common/crypto/api/kcf_random.c
858
uint8_t discard_buf[HASHSIZE];
usr/src/uts/common/crypto/io/swrand.c
241
(void) swrand_get_entropy((uint8_t *)swrand_XKEY, HASHSIZE, B_TRUE);
usr/src/uts/common/crypto/io/swrand.c
242
bcopy(swrand_XKEY, previous_bytes, HASHSIZE);
usr/src/uts/common/crypto/io/swrand.c
321
uint8_t digest[HASHSIZE], *pool;
usr/src/uts/common/crypto/io/swrand.c
322
uint32_t tempout[HASHSIZE/BYTES_IN_WORD];
usr/src/uts/common/crypto/io/swrand.c
362
bytes = min(HASHSIZE, len);
usr/src/uts/common/crypto/io/swrand.c
378
for (i = 0; i < HASHSIZE; i++) {
usr/src/uts/common/crypto/io/swrand.c
387
if (len >= HASHSIZE) {
usr/src/uts/common/crypto/io/swrand.c
388
size = HASHSIZE;
usr/src/uts/common/crypto/io/swrand.c
390
size = min(bytes, HASHSIZE);
usr/src/uts/common/crypto/io/swrand.c
399
for (i = 0; i < HASHSIZE/BYTES_IN_WORD; i++) {
usr/src/uts/common/crypto/io/swrand.c
404
if (i == HASHSIZE/BYTES_IN_WORD) {
usr/src/uts/common/crypto/io/swrand.c
411
bcopy(tempout, previous_bytes, HASHSIZE);
usr/src/uts/common/crypto/io/swrand.c
414
if (len < HASHSIZE) {
usr/src/uts/common/crypto/io/swrand.c
415
leftover_bytes = HASHSIZE - bytes;
usr/src/uts/common/crypto/io/swrand.c
426
bzero(digest, HASHSIZE);
usr/src/uts/common/crypto/io/swrand.c
427
bzero(tempout, HASHSIZE);
usr/src/uts/common/crypto/io/swrand.c
473
uint8_t digest[HASHSIZE];
usr/src/uts/common/crypto/io/swrand.c
502
for (i = 0; i < RNDPOOLSIZE/HASHSIZE + 1; i++) {
usr/src/uts/common/crypto/io/swrand.c
517
k = (start + HASHSIZE) & (RNDPOOLSIZE - 1);
usr/src/uts/common/crypto/io/swrand.c
518
for (j = 0; j < HASHSIZE; j++) {
usr/src/uts/common/crypto/io/swrand.c
524
start = (start + HASHSIZE) & (RNDPOOLSIZE - 1);
usr/src/uts/common/crypto/io/swrand.c
664
uint8_t digest[HASHSIZE];
usr/src/uts/common/crypto/io/swrand.c
809
swrand_add_bytes(digest, HASHSIZE);
usr/src/uts/common/crypto/io/swrand.c
96
static uint8_t leftover[HASHSIZE]; /* leftover output */
usr/src/uts/common/crypto/io/swrand.c
99
static uint32_t previous_bytes[HASHSIZE/BYTES_IN_WORD]; /* prev random bytes */
usr/src/uts/common/io/random.c
235
uint8_t random_bytes[2 * HASHSIZE];