Home
last modified time | relevance | path

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

/dpdk/lib/hash/
H A Drte_hash_crc.h29 #define CRC32_SSE42 (1U << 1) macro
31 #define CRC32_SSE42_x64 (CRC32_x64|CRC32_SSE42)
68 if (!rte_cpu_get_flag_enabled(RTE_CPUFLAG_EM64T) || alg == CRC32_SSE42) in rte_hash_crc_set_alg()
69 crc32_alg = CRC32_SSE42; in rte_hash_crc_set_alg()
H A Drte_crc_x86.h70 if (likely(crc32_alg & CRC32_SSE42)) in rte_hash_crc_1byte()
84 if (likely(crc32_alg & CRC32_SSE42)) in rte_hash_crc_2byte()
98 if (likely(crc32_alg & CRC32_SSE42)) in rte_hash_crc_4byte()
117 if (likely(crc32_alg & CRC32_SSE42)) in rte_hash_crc_8byte()
/dpdk/app/test/
H A Dtest_hash.c189 rte_hash_crc_set_alg(CRC32_SSE42); in test_crc32_hash_alg_equiv()