/src/usr.sbin/ypserv/mknetid/ |
mknetid.c | 70 static int hashidx(char); 149 hashidx(char key) function in typeref:typename:int 172 idx = hashidx(username[0]); 198 idx = hashidx(username[0]);
|
/src/sys/netinet6/ |
ip6_flow.c | 117 #define IP6FLOW_INSERT(hashidx, ip6f) \ 119 (ip6f)->ip6f_hashidx = (hashidx); \ 120 TAILQ_INSERT_HEAD(&ip6flowtable[(hashidx)], (ip6f), ip6f_hash); \ 127 #define IP6FLOW_REMOVE(hashidx, ip6f) \ 129 TAILQ_REMOVE(&ip6flowtable[(hashidx)], (ip6f), ip6f_hash); \
|
in6.c | 2497 u_int hashidx; local in function:in6_lltable_find_dst 2499 hashidx = in6_lltable_hash_dst(dst, llt->llt_hsize); 2500 lleh = &llt->lle_head[hashidx];
|
/src/sys/netinet/ |
ip_flow.c | 90 #define IPFLOW_INSERT(hashidx, ipf) \ 92 (ipf)->ipf_hashidx = (hashidx); \ 93 TAILQ_INSERT_HEAD(&ipflowtable[(hashidx)], (ipf), ipf_hash); \ 97 #define IPFLOW_REMOVE(hashidx, ipf) \ 99 TAILQ_REMOVE(&ipflowtable[(hashidx)], (ipf), ipf_hash); \
|
in.c | 2176 u_int hashidx; local in function:in_lltable_find_dst 2178 hashidx = in_lltable_hash_dst(dst, llt->llt_hsize); 2179 lleh = &llt->lle_head[hashidx];
|
/src/sys/kern/ |
subr_thmap.c | 211 unsigned hashidx; // current hash index (block of bits) member in struct:__anon316903000308 370 query->hashidx = 0; 384 if (query->hashidx != i) { 387 query->hashidx = i; 408 if (__predict_true(query->hashidx == 0)) {
|
/src/sys/net/ |
if_llatbl.c | 212 uint32_t hashidx; local in function:htable_link_entry 219 hashidx = llt->llt_hash(lle, llt->llt_hsize); 220 lleh = &llt->lle_head[hashidx];
|
/src/sys/arch/arm/imx/ |
if_enet.c | 718 uint32_t crc, hashidx; local in function:enet_setmulti 744 hashidx = __SHIFTOUT(crc, __BITS(30,26)); 745 gaddr[__SHIFTOUT(crc, __BIT(31))] |= __BIT(hashidx);
|