Software crc32 implementation for 8 byte value. */
| 28 | |
| 29 | /* Software crc32 implementation for 8 byte value. */ |
| 30 | static inline uint32_t |
| 31 | rte_hash_crc_8byte(uint64_t data, uint32_t init_val) |
| 32 | { |
| 33 | return crc32c_2words(data, init_val); |
| 34 | } |
| 35 | |
| 36 | #endif /* _RTE_CRC_GENERIC_H_ */ |
nothing calls this directly
no test coverage detected