| 1693 | } |
| 1694 | |
| 1695 | static uint32_t |
| 1696 | test_hash_jhash_1word(const void *key, uint32_t length, uint32_t initval) |
| 1697 | { |
| 1698 | const uint32_t *k = key; |
| 1699 | |
| 1700 | RTE_SET_USED(length); |
| 1701 | |
| 1702 | return rte_jhash_1word(k[0], initval); |
| 1703 | } |
| 1704 | |
| 1705 | static uint32_t |
| 1706 | test_hash_jhash_2word(const void *key, uint32_t length, uint32_t initval) |
nothing calls this directly
no test coverage detected