/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); 97 hashdone(oldhash, HASH_LIST, oldmask); 107 hashdone(ntfs_nthashtbl, HASH_LIST, ntfs_nthash);
|
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); 177 hashdone(ht->table, HASH_LIST, ht->mask);
|
/src/sys/kern/ |
subr_hash.c | 62 case HASH_LIST: 111 case HASH_LIST:
|
kern_fileassoc.c | 202 hashdone(tbl->tbl_hash, HASH_LIST, tbl->tbl_mask); 365 newtbl->tbl_hash = hashinit(newtbl->tbl_nslots, HASH_LIST, 395 hashdone(tbl->tbl_hash, HASH_LIST, tbl->tbl_mask); 418 tbl->tbl_hash = hashinit(tbl->tbl_nslots, HASH_LIST, true,
|
uipc_sem.c | 205 ksem_pshared_hashtab = hashinit(KSEM_PSHARED_HASHSIZE, HASH_LIST, 264 hashdone(ksem_pshared_hashtab, HASH_LIST, ksem_pshared_hashmask);
|
vfs_wapbl.c | 2274 wl->wl_inohash = hashinit(size, HASH_LIST, true, &wl->wl_inohashmask); 2287 hashdone(wl->wl_inohash, HASH_LIST, wl->wl_inohashmask); 2774 wr->wr_blkhash = hashinit(size, HASH_LIST, true, &wr->wr_blkhashmask); 2797 hashdone(wr->wr_blkhash, HASH_LIST, wr->wr_blkhashmask);
|
vfs_bio.c | 540 bufhashtbl = hashinit(nbuf, HASH_LIST, true, &bufhash);
|
/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/nfs/ |
nfs_srvcache.c | 162 nfsrvhashtbl = hashinit(desirednfsrvcache, HASH_LIST, true, 177 hashdone(nfsrvhashtbl, HASH_LIST, nfsrvhash);
|
nfs_node.c | 236 hashdone(np->n_dircache, HASH_LIST, nfsdirhashmask);
|
nfs_subs.c | 1169 dircache = hashinit(NFS_DIRHASHSIZ, HASH_LIST, true, 1181 hashdone(dircache, HASH_LIST, nfsdirhashmask);
|
/src/sys/miscfs/procfs/ |
procfs_vfsops.c | 661 procfs_hashtab = hashinit(PROCFS_HASHSIZE, HASH_LIST, true, 673 hashdone(procfs_hashtab, HASH_LIST, procfs_hashmask);
|
/src/sys/fs/union/ |
union_subr.c | 121 uhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &uhash_mask); 132 hash = hashinit(desiredvnodes, HASH_LIST, true, &mask); 146 hashdone(oldhash, HASH_LIST, oldmask); 156 hashdone(uhashtbl, HASH_LIST, uhash_mask);
|
/src/sys/ufs/lfs/ |
ulfs_quota.c | 708 dqhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &dqhash); 722 hash = hashinit(desiredvnodes, HASH_LIST, true, &mask); 737 hashdone(oldhash, HASH_LIST, oldmask); 748 hashdone(dqhashtbl, HASH_LIST, dqhash);
|
/src/sys/ufs/ufs/ |
ufs_quota.c | 692 dqhashtbl = hashinit(desiredvnodes, HASH_LIST, true, &dqhash); 706 hash = hashinit(desiredvnodes, HASH_LIST, true, &mask); 721 hashdone(oldhash, HASH_LIST, oldmask); 732 hashdone(dqhashtbl, HASH_LIST, dqhash);
|
/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, 219 in_multihashtbl = hashinit(IN_IFADDR_HASH_SIZE, HASH_LIST, true,
|
ip_mroute.c | 604 mfchashtbl = hashinit(MFCTBLSIZ, HASH_LIST, true, &mfchash); 669 hashdone(mfchashtbl, HASH_LIST, mfchash);
|
sctp_pcb.c | 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/usr.bin/vmstat/ |
vmstat.c | 1899 HASH_LIST, 1916 HASH_LIST, offsetof(struct buf, b_hash) 1920 HASH_LIST, offsetof(struct in_ifaddr, ia_hash), 1996 case HASH_LIST: 2035 if (curhash->type == HASH_LIST) { 2049 if (curhash->type == HASH_LIST)
|
/src/sys/uvm/ |
uvm_aobj.c | 383 hashdone(aobj->u_swhash, HASH_LIST, aobj->u_swhashmask); 468 HASH_LIST, true, &aobj->u_swhashmask);
|
uvm_bio.c | 208 ubc_object.hash = hashinit(ubc_nwins, HASH_LIST, true,
|
/src/sys/sys/ |
systm.h | 187 HASH_LIST,
|
/src/sys/dev/i2o/ |
iop.c | 300 iop_ictxhashtbl = hashinit(IOP_ICTXHASH_NBUCKETS, HASH_LIST,
|