| 1713 | } |
| 1714 | |
| 1715 | static uint32_t |
| 1716 | test_hash_jhash_3word(const void *key, uint32_t length, uint32_t initval) |
| 1717 | { |
| 1718 | const uint32_t *k = key; |
| 1719 | |
| 1720 | RTE_SET_USED(length); |
| 1721 | |
| 1722 | return rte_jhash_3words(k[0], k[1], k[2], initval); |
| 1723 | } |
| 1724 | |
| 1725 | /* |
| 1726 | * add/delete key with jhash 1word |
nothing calls this directly
no test coverage detected