* A special ultra-optimized versions that knows it is hashing exactly * 3 words. * * @param a * First word to calculate hash of. * @param b * Second word to calculate hash of. * @param c * Third word to calculate hash of. * @param initval * Initialising value of hash. * @return * Calculated hash value. */
| 337 | * Calculated hash value. |
| 338 | */ |
| 339 | static inline uint32_t |
| 340 | rte_jhash_3words(uint32_t a, uint32_t b, uint32_t c, uint32_t initval) |
| 341 | { |
| 342 | return __rte_jhash_3words(a + 12, b + 12, c + 12, initval); |
| 343 | } |
| 344 | |
| 345 | /** |
| 346 | * A special ultra-optimized versions that knows it is hashing exactly |