Lines Matching refs:k2
145 uint32_t k2 = hash_get_block_32(blocks, i*4 + 1); in hash_x86_128() local
154 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; in hash_x86_128()
175 uint32_t k2 = 0; in hash_x86_128() local
191 case 8: k2 ^= tail[ 7] << 24; in hash_x86_128()
192 case 7: k2 ^= tail[ 6] << 16; in hash_x86_128()
193 case 6: k2 ^= tail[ 5] << 8; in hash_x86_128()
194 case 5: k2 ^= tail[ 4] << 0; in hash_x86_128()
195 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2; in hash_x86_128()
242 uint64_t k2 = hash_get_block_64(blocks, i*2 + 1); in hash_x64_128() local
249 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2; in hash_x64_128()
260 uint64_t k2 = 0; in hash_x64_128() local
263 case 15: k2 ^= ((uint64_t)(tail[14])) << 48; /* falls through */ in hash_x64_128()
264 case 14: k2 ^= ((uint64_t)(tail[13])) << 40; /* falls through */ in hash_x64_128()
265 case 13: k2 ^= ((uint64_t)(tail[12])) << 32; /* falls through */ in hash_x64_128()
266 case 12: k2 ^= ((uint64_t)(tail[11])) << 24; /* falls through */ in hash_x64_128()
267 case 11: k2 ^= ((uint64_t)(tail[10])) << 16; /* falls through */ in hash_x64_128()
268 case 10: k2 ^= ((uint64_t)(tail[ 9])) << 8; /* falls through */ in hash_x64_128()
269 case 9: k2 ^= ((uint64_t)(tail[ 8])) << 0; in hash_x64_128()
270 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2; in hash_x64_128()