Home
last modified time | relevance | path

Searched refs:crc32c_tables (Results 1 – 1 of 1) sorted by relevance

/f-stack/dpdk/lib/librte_hash/
H A Drte_hash_crc.h25 static const uint32_t crc32c_tables[8][256] = {{ variable
299 (crc32c_tables[(n)][(crc) & 0xFF] ^ \
300 crc32c_tables[(n)-1][((crc) >> 8) & 0xFF])
309 return crc32c_tables[0][crc & 0xff] ^ (crc >> 8); in crc32c_1byte()