Software crc32 implementation for 2 byte value. */
| 14 | |
| 15 | /* Software crc32 implementation for 2 byte value. */ |
| 16 | static inline uint32_t |
| 17 | rte_hash_crc_2byte(uint16_t data, uint32_t init_val) |
| 18 | { |
| 19 | return crc32c_2bytes(data, init_val); |
| 20 | } |
| 21 | |
| 22 | /* Software crc32 implementation for 4 byte value. */ |
| 23 | static inline uint32_t |
nothing calls this directly
no test coverage detected