| /freebsd-14-stable/sys/kern/ |
| HD | vfs_hash.c | 50 vfs_hash_tbl = hashinit(desiredvnodes, M_VFS_HASH, &vfs_hash_mask); in vfs_hashinit() 214 vfs_hash_newtbl = hashinit(newmaxvnodes, M_VFS_HASH, in vfs_hash_changesize()
|
| HD | subr_hash.c | 84 hashinit(int elements, struct malloc_type *type, u_long *hashmask) in hashinit() function
|
| HD | subr_sfbuf.c | 95 sf_buf_active = hashinit(nsfbufs, M_TEMP, &sf_buf_hashmask); in sf_buf_init()
|
| HD | uipc_sem.c | 1035 ksem_dictionary = hashinit(1024, M_KSEM, &ksem_hash); in ksem_module_init()
|
| HD | kern_thread.c | 579 tidhashtbl = hashinit(maxproc / 2, M_TIDHASH, &tidhash); in threadinit()
|
| HD | kern_resource.c | 1503 uihashtbl = hashinit(maxproc / 16, M_UIDINFO, &uihash); in uihashinit()
|
| HD | kern_proc.c | 192 pidhashtbl = hashinit(maxproc / 4, M_PROC, &pidhash); in procinit() 200 pgrphashtbl = hashinit(maxproc / 4, M_PROC, &pgrphash); in procinit()
|
| /freebsd-14-stable/sys/dev/drm2/ |
| HD | drm_gem_names.c | 50 names->names_hash = hashinit(1000 /* XXXKIB */, M_GEM_NAMES, in drm_gem_names_init()
|
| /freebsd-14-stable/sys/fs/nullfs/ |
| HD | null_subr.c | 75 null_node_hashtbl = hashinit(desiredvnodes, M_NULLFSHASH, in nullfs_init()
|
| /freebsd-14-stable/sys/fs/pseudofs/ |
| HD | pseudofs_vncache.c | 92 pfs_vncache_hashtbl = hashinit(maxproc / 4, M_PFSVNCACHE, &pfs_vncache_hash);
|
| /freebsd-14-stable/sys/dev/cxgbe/ |
| HD | t4_clip.c | 385 sc->clip_table = hashinit(CLIP_HASH_SIZE, M_CXGBE, &sc->clip_mask); in t4_init_clip_table() 846 clip_db = hashinit(CLIP_HASH_SIZE, M_CXGBE, &clip_db_mask); in t4_clip_modload()
|
| /freebsd-14-stable/sys/contrib/openzfs/module/os/freebsd/spl/ |
| HD | spl_taskq.c | 80 tqenthashtbl = hashinit(mp_ncpus * 8, M_TASKQ, &tqenthash); in system_taskq_init()
|
| /freebsd-14-stable/share/man/man9/ |
| HD | Makefile | 171 hashinit.9 \ 1203 MLINKS+=hashinit.9 hashdestroy.9 \ 1204 hashinit.9 hashinit_flags.9 \ 1205 hashinit.9 phashinit.9
|
| /freebsd-14-stable/sys/fs/fdescfs/ |
| HD | fdesc_vnops.c | 104 fdhashtbl = hashinit(NFDCACHE, M_CACHE, &fdhash); in fdesc_init()
|
| /freebsd-14-stable/sys/netinet/ |
| HD | in_pcb.c | 531 pcbinfo->ipi_hash_exact = hashinit(hash_nelements, M_PCB, in in_pcbinfo_init() 533 pcbinfo->ipi_hash_wild = hashinit(hash_nelements, M_PCB, in in_pcbinfo_init() 536 pcbinfo->ipi_porthashbase = hashinit(porthash_nelements, M_PCB, in in_pcbinfo_init() 538 pcbinfo->ipi_lbgrouphashbase = hashinit(porthash_nelements, M_PCB, in in_pcbinfo_init()
|
| HD | siftr.c | 1304 counter_hash = hashinit(SIFTR_EXPECTED_MAX_TCP_FLOWS, M_SIFTR, in init_siftr()
|
| HD | ip_input.c | 318 V_in_ifaddrhashtbl = hashinit(INADDR_NHASH, M_IFADDR, &V_in_ifaddrhmask); in ip_vnet_init()
|
| /freebsd-14-stable/sys/sys/ |
| HD | systm.h | 155 void *hashinit(int count, struct malloc_type *type, u_long *hashmask);
|
| /freebsd-14-stable/sys/netgraph/ |
| HD | ng_socket.c | 577 priv->hash = hashinit(16, M_NETGRAPH_SOCK, &priv->hmask); in ng_attach_cntl()
|
| HD | ng_base.c | 3145 V_ng_ID_hash = hashinit(16, M_NETGRAPH_NODE, &V_ng_ID_hmask); in vnet_netgraph_init() 3146 V_ng_name_hash = hashinit(16, M_NETGRAPH_NODE, &V_ng_name_hmask); in vnet_netgraph_init()
|
| /freebsd-14-stable/sys/netipsec/ |
| HD | key.c | 8246 V_spdcachehashtbl = hashinit(V_key_spdcache_maxentries / in spdcache_init() 8335 V_sphashtbl = hashinit(SPHASH_NHASH, M_IPSEC_SP, &V_sphash_mask); in key_vnet_init() 8336 V_savhashtbl = hashinit(SAVHASH_NHASH, M_IPSEC_SA, &V_savhash_mask); in key_vnet_init() 8337 V_sahaddrhashtbl = hashinit(SAHHASH_NHASH, M_IPSEC_SAH, in key_vnet_init() 8339 V_acqaddrhashtbl = hashinit(ACQHASH_NHASH, M_IPSEC_SAQ, in key_vnet_init() 8341 V_acqseqhashtbl = hashinit(ACQHASH_NHASH, M_IPSEC_SAQ, in key_vnet_init()
|
| /freebsd-14-stable/sys/fs/unionfs/ |
| HD | union_subr.c | 352 unp->un_hashtbl = hashinit(NUNIONFSNODECACHE, M_UNIONFSHASH, in unionfs_nodeget()
|
| /freebsd-14-stable/sys/netinet6/ |
| HD | ip6_input.c | 237 V_in6_ifaddrhashtbl = hashinit(IN6ADDR_NHASH, M_IFADDR, in ip6_vnet_init()
|
| /freebsd-14-stable/sys/ufs/ufs/ |
| HD | ufs_quota.c | 1170 dqhashtbl = hashinit(desiredvnodes, M_DQUOT, &dqhash); in dqinit()
|
| /freebsd-14-stable/sys/dev/cxgbe/cxgbei/ |
| HD | icl_cxgbei.c | 910 icc->cmp_table = hashinit(64, M_CXGBEI, &icc->cmp_hash_mask); in icl_cxgbei_new_conn()
|