Searched refs:hashv (Results 1 - 3 of 3) sorted by relevance

/freebsd-current/contrib/elftoolchain/common/
H A Duthash.h129 #define HASH_BLOOM_ADD(tbl,hashv) \
130 HASH_BLOOM_BITSET((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1)))
132 #define HASH_BLOOM_TEST(tbl,hashv) \
133 HASH_BLOOM_BITTEST((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1)))
138 #define HASH_BLOOM_ADD(tbl,hashv)
139 #define HASH_BLOOM_TEST(tbl,hashv) (1)
182 (add)->hh.hashv, _ha_bkt); \
184 HASH_BLOOM_ADD((head)->hh.tbl,(add)->hh.hashv); \
189 #define HASH_TO_BKT( hashv, num_bkts, bkt ) \
191 bkt = ((hashv)
916 unsigned hashv; /* result of hash-fcn(key) */ member in struct:UT_hash_handle
[all...]
/freebsd-current/contrib/libucl/uthash/
H A Duthash.h128 #define HASH_BLOOM_ADD(tbl,hashv) \
129 HASH_BLOOM_BITSET((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1)))
131 #define HASH_BLOOM_TEST(tbl,hashv) \
132 HASH_BLOOM_BITTEST((tbl)->bloom_bv, (hashv & (uint32_t)((1ULL << (tbl)->bloom_nbits) - 1)))
137 #define HASH_BLOOM_ADD(tbl,hashv)
138 #define HASH_BLOOM_TEST(tbl,hashv) (1)
192 (add)->hh.hashv, _ha_bkt); \
194 HASH_BLOOM_ADD((head)->hh.tbl,(add)->hh.hashv); \
199 #define HASH_TO_BKT( hashv, num_bkts, bkt ) \
201 bkt = ((hashv)
717 unsigned hashv; /* result of hash-fcn(key) */ member in struct:UT_hash_handle
[all...]
/freebsd-current/sys/netipsec/
H A Dkey.c918 uint32_t hashv; local
927 hashv = SPDCACHE_HASHVAL(spidx);
928 SPDCACHE_LOCK(hashv);
930 LIST_FOREACH_SAFE(entry, &V_spdcachehashtbl[hashv], chain, tmpentry) {
951 SPDCACHE_UNLOCK(hashv);
965 LIST_INSERT_HEAD(&V_spdcachehashtbl[hashv], entry, chain);
968 SPDCACHE_UNLOCK(hashv);

Completed in 70 milliseconds