HomeSort by relevance Sort by last modified time
    Searched defs:jhash (Results 1 - 4 of 4) sorted by null

  /external/blktrace/
jhash.h 4 /* jhash.h: Jenkins hash support.
58 static inline u32 jhash(const void *key, u32 length, u32 initval) function
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_l4lb.c 31 /* copy paste of jhash from kernel sources to make sure llvm
59 static inline u32 jhash(const void *key, u32 length, u32 initval) function
211 return jhash_2words(jhash(pckt->srcv6, 16, MAX_VIPS),
test_l4lb_noinline.c 27 /* copy paste of jhash from kernel sources to make sure llvm
55 static u32 jhash(const void *key, u32 length, u32 initval) function
207 return jhash_2words(jhash(pckt->srcv6, 16, MAX_VIPS),
222 if (hash != 0x358459b7 /* jhash of ipv4 packet */ &&
223 hash != 0x2f4bc6bb /* jhash of ipv6 packet */)
test_xdp_noinline.c 30 /* copy paste of jhash from kernel sources to make sure llvm
59 u32 jhash(const void *key, u32 length, u32 initval) function
551 return jhash_2words(jhash(pckt->flow.srcv6, 16, 12),
576 if (hash != 0x358459b7 /* jhash of ipv4 packet */ &&
577 hash != 0x2f4bc6bb /* jhash of ipv6 packet */)

Completed in 423 milliseconds