MCPcopy Create free account
hub / github.com/F-Stack/f-stack / __rte_jhash_3words

Function __rte_jhash_3words

dpdk/lib/hash/rte_jhash.h:312–322  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

310}
311
312static inline uint32_t
313__rte_jhash_3words(uint32_t a, uint32_t b, uint32_t c, uint32_t initval)
314{
315 a += RTE_JHASH_GOLDEN_RATIO + initval;
316 b += RTE_JHASH_GOLDEN_RATIO + initval;
317 c += RTE_JHASH_GOLDEN_RATIO + initval;
318
319 __rte_jhash_final(a, b, c);
320
321 return c;
322}
323
324/**
325 * A special ultra-optimized versions that knows it is hashing exactly

Callers 3

rte_jhash_3wordsFunction · 0.70
rte_jhash_2wordsFunction · 0.70
rte_jhash_1wordFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected