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

Function rte_hash_crc_2byte

dpdk/lib/hash/rte_crc_generic.h:16–20  ·  view source on GitHub ↗

Software crc32 implementation for 2 byte value. */

Source from the content-addressed store, hash-verified

14
15/* Software crc32 implementation for 2 byte value. */
16static inline uint32_t
17rte_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. */
23static inline uint32_t

Callers

nothing calls this directly

Calls 1

crc32c_2bytesFunction · 0.85

Tested by

no test coverage detected