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

Function rte_hash_crc_4byte

dpdk/lib/hash/rte_crc_generic.h:23–27  ·  view source on GitHub ↗

Software crc32 implementation for 4 byte value. */

Source from the content-addressed store, hash-verified

21
22/* Software crc32 implementation for 4 byte value. */
23static inline uint32_t
24rte_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. */
30static inline uint32_t

Callers

nothing calls this directly

Calls 1

crc32c_1wordFunction · 0.85

Tested by

no test coverage detected