Symbol: hashinit
sys/dev/i2o/iop.c
300
iop_ictxhashtbl = hashinit(IOP_ICTXHASH_NBUCKETS, HASH_LIST,
sys/fs/ntfs/ntfs.h
305
#define HASHINIT(a, b, c, d) hashinit((a), HASH_LIST, (b), (c), (d))
sys/fs/ntfs/ntfs_ihash.c
67
ntfs_nthashtbl = hashinit(desiredvnodes, HASH_LIST, true, &ntfs_nthash);
sys/fs/ntfs/ntfs_ihash.c
82
hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
sys/fs/ptyfs/ptyfs_subr.c
127
ptyfs_node_tbl = hashinit(16, HASH_SLIST, true, &ptyfs_node_mask);
sys/fs/union/union_subr.c
121
uhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &uhash_mask);
sys/fs/union/union_subr.c
132
hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
sys/kern/kern_event.c
2009
fdp->fd_knhash = hashinit(KN_HASHSIZE,
sys/kern/kern_fileassoc.c
368
newtbl->tbl_hash = hashinit(newtbl->tbl_nslots, HASH_LIST,
sys/kern/kern_fileassoc.c
421
tbl->tbl_hash = hashinit(tbl->tbl_nslots, HASH_LIST, true,
sys/kern/kern_uidinfo.c
180
uihashtbl = hashinit(uihash_sz, HASH_SLIST, true, &uihash);
sys/kern/uipc_sem.c
205
ksem_pshared_hashtab = hashinit(KSEM_PSHARED_HASHSIZE, HASH_LIST,
sys/kern/vfs_bio.c
540
bufhashtbl = hashinit(nbuf, HASH_LIST, true, &bufhash);
sys/kern/vfs_trans.c
148
fstrans_mount_hashtab = hashinit(FSTRANS_MOUNT_HASHSIZE, HASH_SLIST,
sys/kern/vfs_vnode.c
1375
vcache_hashtab = hashinit(desiredvnodes, HASH_SLIST, true,
sys/kern/vfs_vnode.c
1389
newtab = hashinit(desiredvnodes, HASH_SLIST, true, &newmask);
sys/kern/vfs_wapbl.c
2274
wl->wl_inohash = hashinit(size, HASH_LIST, true, &wl->wl_inohashmask);
sys/kern/vfs_wapbl.c
2774
wr->wr_blkhash = hashinit(size, HASH_LIST, true, &wr->wr_blkhashmask);
sys/miscfs/procfs/procfs_vfsops.c
661
procfs_hashtab = hashinit(PROCFS_HASHSIZE, HASH_LIST, true,
sys/net/if_l2tp.c
1123
l2tp_hash.lists = hashinit(L2TP_ID_HASH_SIZE, HASH_PSLIST, true,
sys/net/if_vlan.c
685
ifv_hash.lists = hashinit(VLAN_TAG_HASH_SIZE, HASH_PSLIST, true,
sys/netcan/can_pcb.c
77
table->canpt_bindhashtbl = hashinit(bindhashsize, HASH_LIST, true,
sys/netcan/can_pcb.c
79
table->canpt_connecthashtbl = hashinit(connecthashsize, HASH_LIST,
sys/netinet/in.c
211
in_ifaddrhashtbl = hashinit(IN_IFADDR_HASH_SIZE, HASH_LIST, true,
sys/netinet/in.c
215
in_ifaddrhashtbl_pslist = hashinit(IN_IFADDR_HASH_SIZE, HASH_PSLIST,
sys/netinet/in.c
219
in_multihashtbl = hashinit(IN_IFADDR_HASH_SIZE, HASH_LIST, true,
sys/netinet/in_pcb.c
183
table->inpt_porthashtbl = hashinit(bindhashsize, HASH_LIST, true,
sys/netinet/in_pcb.c
185
table->inpt_bindhashtbl = hashinit(bindhashsize, HASH_LIST, true,
sys/netinet/in_pcb.c
187
table->inpt_connecthashtbl = hashinit(connecthashsize, HASH_LIST, true,
sys/netinet/ip_mroute.c
604
mfchashtbl = hashinit(MFCTBLSIZ, HASH_LIST, true, &mfchash);
sys/netinet/sctp_pcb.c
3810
sctppcbinfo.sctp_asochash = hashinit((hashtblsize * 31), HASH_LIST,
sys/netinet/sctp_pcb.c
3813
sctppcbinfo.sctp_ephash = hashinit(hashtblsize, HASH_LIST,
sys/netinet/sctp_pcb.c
3816
sctppcbinfo.sctp_tcpephash = hashinit(hashtblsize, HASH_LIST,
sys/netipsec/key.c
8303
key_sad.sahlists = hashinit(SAHHASH_NHASH, HASH_PSLIST, true,
sys/netipsec/key.c
8305
key_sad.savlut = hashinit(SAVLUT_NHASH, HASH_PSLIST, true,
sys/nfs/nfs_srvcache.c
162
nfsrvhashtbl = hashinit(desirednfsrvcache, HASH_LIST, true,
sys/nfs/nfs_subs.c
1169
dircache = hashinit(NFS_DIRHASHSIZ, HASH_LIST, true,
sys/sys/systm.h
244
void *hashinit(u_int, enum hashtype, bool, u_long *);
sys/ufs/lfs/ulfs_quota.c
708
dqhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &dqhash);
sys/ufs/lfs/ulfs_quota.c
722
hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
sys/ufs/ufs/ufs_quota.c
696
dqhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &dqhash);
sys/ufs/ufs/ufs_quota.c
710
hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
sys/uvm/uvm_aobj.c
467
aobj->u_swhash = hashinit(UAO_SWHASH_BUCKETS(aobj),
sys/uvm/uvm_bio.c
208
ubc_object.hash = hashinit(ubc_nwins, HASH_LIST, true,