MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_hash_crc_8byte

Function rte_hash_crc_8byte

dpdk/lib/hash/rte_crc_generic.h:30–34  ·  view source on GitHub ↗

Software crc32 implementation for 8 byte value. */

Source from the content-addressed store, hash-verified

28
29/* Software crc32 implementation for 8 byte value. */
30static inline uint32_t
31rte_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_ */

Callers

nothing calls this directly

Calls 1

crc32c_2wordsFunction · 0.85

Tested by

no test coverage detected