| 1703 | } |
| 1704 | |
| 1705 | static uint32_t |
| 1706 | test_hash_jhash_2word(const void *key, uint32_t length, uint32_t initval) |
| 1707 | { |
| 1708 | const uint32_t *k = key; |
| 1709 | |
| 1710 | RTE_SET_USED(length); |
| 1711 | |
| 1712 | return rte_jhash_2words(k[0], k[1], initval); |
| 1713 | } |
| 1714 | |
| 1715 | static uint32_t |
| 1716 | test_hash_jhash_3word(const void *key, uint32_t length, uint32_t initval) |
nothing calls this directly
no test coverage detected