Searched refs:crc3 (Results 1 – 2 of 2) sorted by relevance
| /f-stack/dpdk/lib/librte_table/ |
| H A D | rte_table_hash_func.h | 118 uint64_t k0, k2, crc0, crc1, crc2, crc3; in rte_table_hash_crc_key32() local 127 crc3 = k2 >> 32; in rte_table_hash_crc_key32() 130 crc1 = rte_crc32_u64(crc2, crc3); in rte_table_hash_crc_key32() 144 uint64_t k0, k2, crc0, crc1, crc2, crc3; in rte_table_hash_crc_key40() local 153 crc3 = rte_crc32_u64(k2 >> 32, k[4] & m[4]); in rte_table_hash_crc_key40() 156 crc1 = rte_crc32_u64(crc2, crc3); in rte_table_hash_crc_key40() 170 uint64_t k0, k2, k5, crc0, crc1, crc2, crc3; in rte_table_hash_crc_key48() local 180 crc3 = rte_crc32_u64(k2 >> 32, k[4] & m[4]); in rte_table_hash_crc_key48() 183 crc1 = rte_crc32_u64(crc3, k5); in rte_table_hash_crc_key48() 207 crc3 = rte_crc32_u64(k2 >> 32, k[4] & m[4]); in rte_table_hash_crc_key56() [all …]
|
| H A D | rte_swx_table_em.c | 92 uint64_t k0, k2, k5, crc0, crc1, crc2, crc3, crc4, crc5; in hash() local 117 crc3 = k2 >> 32; in hash() 120 crc1 = crc32_u64(crc2, crc3); in hash() 135 crc3 = crc32_u64(k2 >> 32, k[4] & m[4]); in hash() 141 crc1 = crc32_u64(crc3, (crc4 << 32) ^ crc5); in hash()
|