Searched refs:hashsize (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/kern/
H A Dkern_subr.c313 long hashsize; local
319 for (hashsize = 1; hashsize <= elements; hashsize <<= 1)
321 hashsize >>= 1;
323 hashsize * sizeof(*hashtbl), type, M_WAITOK|M_ZERO);
325 for (i = 0; i < hashsize; i++)
327 *hashmask = hashsize - 1;
H A Dpthread_support.c2671 int hashsize = pthhash + 1; local
2684 for(i= 0; i < hashsize; i++) {
/darwin-on-arm/xnu/bsd/netinet/
H A Din_pcb.h505 u_int32_t hashsize; /* in elements */ member in struct:inpcbinfo
H A Dtcp_subr.c374 tcbinfo.hashsize = tcp_tcbhashsize;
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c2240 uintptr_t hashsize = (buf->dtb_size >> 3) / sizeof (uintptr_t);
2242 if ((uintptr_t)agb - hashsize * sizeof (dtrace_aggkey_t *) <
2243 (uintptr_t)tomax || hashsize == 0) {
2256 if (hashsize > (DTRACE_AGGHASHSIZE_SLEW << 3))
2257 hashsize -= DTRACE_AGGHASHSIZE_SLEW;
2259 agb->dtagb_hashsize = hashsize;
13442 size_t hashsize, maxper, min_size, chunksize = dstate->dtds_chunksize;
13471 hashsize = size / (dstate->dtds_chunksize + sizeof (dtrace_dynhash_t));
13473 if (hashsize != 1 && (hashsize
[all...]

Completed in 103 milliseconds