Searched refs:__jhash_nwords (Results 1 - 6 of 6) sorted by relevance

/linux-master/tools/include/linux/
H A Djhash.h148 /* __jhash_nwords - hash exactly 3, 2 or 1 word(s) */
149 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) function
162 return __jhash_nwords(a, b, c, initval + JHASH_INITVAL + (3 << 2));
167 return __jhash_nwords(a, b, 0, initval + JHASH_INITVAL + (2 << 2));
172 return __jhash_nwords(a, 0, 0, initval + JHASH_INITVAL + (1 << 2));
/linux-master/include/linux/
H A Djhash.h149 /* __jhash_nwords - hash exactly 3, 2 or 1 word(s) */
150 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) function
163 return __jhash_nwords(a, b, c, initval + JHASH_INITVAL + (3 << 2));
168 return __jhash_nwords(a, b, 0, initval + JHASH_INITVAL + (2 << 2));
173 return __jhash_nwords(a, 0, 0, initval + JHASH_INITVAL + (1 << 2));
/linux-master/tools/testing/selftests/bpf/progs/
H A Dtest_l4lb.c93 static inline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) function
104 return __jhash_nwords(a, b, 0, initval + JHASH_INITVAL + (2 << 2));
H A Dtest_l4lb_noinline.c89 static __noinline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) function
100 return __jhash_nwords(a, b, 0, initval + JHASH_INITVAL + (2 << 2));
H A Dtest_l4lb_noinline_dynptr.c91 static __noinline u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) function
102 return __jhash_nwords(a, b, 0, initval + JHASH_INITVAL + (2 << 2));
H A Dtest_xdp_noinline.c91 u32 __jhash_nwords(u32 a, u32 b, u32 c, u32 initval) function
103 return __jhash_nwords(a, b, 0, initval + JHASH_INITVAL + (2 << 2));

Completed in 163 milliseconds