Software crc32 implementation for 4 byte value. */
| 21 | |
| 22 | /* Software crc32 implementation for 4 byte value. */ |
| 23 | static inline uint32_t |
| 24 | rte_hash_crc_4byte(uint32_t data, uint32_t init_val) |
| 25 | { |
| 26 | return crc32c_1word(data, init_val); |
| 27 | } |
| 28 | |
| 29 | /* Software crc32 implementation for 8 byte value. */ |
| 30 | static inline uint32_t |
nothing calls this directly
no test coverage detected