/src/sys/fs/ntfs/ |
ntfs_ihash.c | 67 ntfs_nthashtbl = hashinit(desiredvnodes, HASH_LIST, true, &ntfs_nthash); 82 hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
|
ntfs.h | 305 #define HASHINIT(a, b, c, d) hashinit((a), HASH_LIST, (b), (c), (d))
|
/src/sys/external/bsd/drm/dist/bsd-core/ |
drm_hashtab.c | 49 ht->table = hashinit(ht->size, HASH_LIST, false, &ht->mask);
|
/src/sys/kern/ |
subr_hash.c | 87 hashinit(u_int elements, enum hashtype htype, bool waitok, u_long *hashmask) function in typeref:typename:void * 137 * Free memory from hash table previously allocated via hashinit().
|
kern_fileassoc.c | 365 newtbl->tbl_hash = hashinit(newtbl->tbl_nslots, HASH_LIST, 418 tbl->tbl_hash = hashinit(tbl->tbl_nslots, HASH_LIST, true,
|
kern_uidinfo.c | 177 uihashtbl = hashinit(uihash_sz, HASH_SLIST, true, &uihash);
|
vfs_vnode.c | 1375 vcache_hashtab = hashinit(desiredvnodes, HASH_SLIST, true, 1389 newtab = hashinit(desiredvnodes, HASH_SLIST, true, &newmask);
|
uipc_sem.c | 205 ksem_pshared_hashtab = hashinit(KSEM_PSHARED_HASHSIZE, HASH_LIST,
|
vfs_trans.c | 148 fstrans_mount_hashtab = hashinit(FSTRANS_MOUNT_HASHSIZE, HASH_SLIST,
|
/src/sys/netcan/ |
can_pcb.c | 77 table->canpt_bindhashtbl = hashinit(bindhashsize, HASH_LIST, true, 79 table->canpt_connecthashtbl = hashinit(connecthashsize, HASH_LIST,
|
/src/sys/fs/ptyfs/ |
ptyfs_subr.c | 127 ptyfs_node_tbl = hashinit(16, HASH_SLIST, true, &ptyfs_node_mask);
|
/src/sys/nfs/ |
nfs_srvcache.c | 162 nfsrvhashtbl = hashinit(desirednfsrvcache, HASH_LIST, true,
|
/src/sys/netinet/ |
in_pcb.c | 183 table->inpt_porthashtbl = hashinit(bindhashsize, HASH_LIST, true, 185 table->inpt_bindhashtbl = hashinit(bindhashsize, HASH_LIST, true, 187 table->inpt_connecthashtbl = hashinit(connecthashsize, HASH_LIST, true,
|
in.c | 211 in_ifaddrhashtbl = hashinit(IN_IFADDR_HASH_SIZE, HASH_LIST, true, 215 in_ifaddrhashtbl_pslist = hashinit(IN_IFADDR_HASH_SIZE, HASH_PSLIST, 219 in_multihashtbl = hashinit(IN_IFADDR_HASH_SIZE, HASH_LIST, true,
|
sctp_pcb.c | 1408 printf("Out of SCTP-INPCB->hashinit - no resources\n"); 3810 sctppcbinfo.sctp_asochash = hashinit((hashtblsize * 31), HASH_LIST, 3813 sctppcbinfo.sctp_ephash = hashinit(hashtblsize, HASH_LIST, 3816 sctppcbinfo.sctp_tcpephash = hashinit(hashtblsize, HASH_LIST,
|
/src/sys/miscfs/procfs/ |
procfs_vfsops.c | 661 procfs_hashtab = hashinit(PROCFS_HASHSIZE, HASH_LIST, true,
|
/src/sys/fs/union/ |
union_subr.c | 121 uhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &uhash_mask); 132 hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
|
/src/sys/ufs/lfs/ |
ulfs_quota.c | 708 dqhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &dqhash); 722 hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
|
/src/sys/ufs/ufs/ |
ufs_quota.c | 692 dqhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &dqhash); 706 hash = hashinit(desiredvnodes, HASH_LIST, true, &mask);
|
/src/sys/sys/ |
systm.h | 241 void *hashinit(u_int, enum hashtype, bool, u_long *);
|
/src/share/man/man9/ |
Makefile | 27 hardclock.9 hash.9 hashinit.9 heartbeat.9 humanize_number.9 hz.9 \ 396 MLINKS+=hashinit.9 hashdone.9
|
/src/sys/uvm/ |
uvm_aobj.c | 467 aobj->u_swhash = hashinit(UAO_SWHASH_BUCKETS(aobj),
|
uvm_bio.c | 208 ubc_object.hash = hashinit(ubc_nwins, HASH_LIST, true,
|
/src/sys/net/ |
if_l2tp.c | 1123 l2tp_hash.lists = hashinit(L2TP_ID_HASH_SIZE, HASH_PSLIST, true,
|
if_vlan.c | 685 ifv_hash.lists = hashinit(VLAN_TAG_HASH_SIZE, HASH_PSLIST, true,
|