Lines Matching refs:k2

96 	uint64_t k0, k2, crc0, crc1;  in rte_table_hash_crc_key24()  local
99 k2 = k[2] & m[2]; in rte_table_hash_crc_key24()
104 crc0 = rte_crc32_u64(crc0, k2); in rte_table_hash_crc_key24()
118 uint64_t k0, k2, crc0, crc1, crc2, crc3; in rte_table_hash_crc_key32() local
121 k2 = k[2] & m[2]; in rte_table_hash_crc_key32()
126 crc2 = rte_crc32_u64(k2, k[3] & m[3]); in rte_table_hash_crc_key32()
127 crc3 = k2 >> 32; in rte_table_hash_crc_key32()
144 uint64_t k0, k2, crc0, crc1, crc2, crc3; in rte_table_hash_crc_key40() local
147 k2 = k[2] & m[2]; in rte_table_hash_crc_key40()
152 crc2 = rte_crc32_u64(k2, k[3] & m[3]); in rte_table_hash_crc_key40()
153 crc3 = rte_crc32_u64(k2 >> 32, k[4] & m[4]); in rte_table_hash_crc_key40()
170 uint64_t k0, k2, k5, crc0, crc1, crc2, crc3; in rte_table_hash_crc_key48() local
173 k2 = k[2] & m[2]; in rte_table_hash_crc_key48()
179 crc2 = rte_crc32_u64(k2, k[3] & m[3]); in rte_table_hash_crc_key48()
180 crc3 = rte_crc32_u64(k2 >> 32, k[4] & m[4]); in rte_table_hash_crc_key48()
197 uint64_t k0, k2, k5, crc0, crc1, crc2, crc3, crc4, crc5; in rte_table_hash_crc_key56() local
200 k2 = k[2] & m[2]; in rte_table_hash_crc_key56()
206 crc2 = rte_crc32_u64(k2, k[3] & m[3]); in rte_table_hash_crc_key56()
207 crc3 = rte_crc32_u64(k2 >> 32, k[4] & m[4]); in rte_table_hash_crc_key56()
227 uint64_t k0, k2, k5, crc0, crc1, crc2, crc3, crc4, crc5; in rte_table_hash_crc_key64() local
230 k2 = k[2] & m[2]; in rte_table_hash_crc_key64()
236 crc2 = rte_crc32_u64(k2, k[3] & m[3]); in rte_table_hash_crc_key64()
237 crc3 = rte_crc32_u64(k2 >> 32, k[4] & m[4]); in rte_table_hash_crc_key64()