Home | History | Annotate | Download | only in internal

Lines Matching defs:k2

145 			uint32_t k2 = hash_get_block_32(blocks, i*4 + 1);
154 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
175 uint32_t k2 = 0;
193 case 8: k2 ^= (uint32_t)tail[ 7] << 24; /*FALLTHROUGH*/
194 case 7: k2 ^= tail[ 6] << 16; /*FALLTHROUGH*/
195 case 6: k2 ^= tail[ 5] << 8; /*FALLTHROUGH*/
196 case 5: k2 ^= tail[ 4] << 0;
197 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
245 uint64_t k2 = hash_get_block_64(blocks, i*2 + 1);
252 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2;
263 uint64_t k2 = 0;
266 case 15: k2 ^= ((uint64_t)(tail[14])) << 48; /* falls through */
267 case 14: k2 ^= ((uint64_t)(tail[13])) << 40; /* falls through */
268 case 13: k2 ^= ((uint64_t)(tail[12])) << 32; /* falls through */
269 case 12: k2 ^= ((uint64_t)(tail[11])) << 24; /* falls through */
270 case 11: k2 ^= ((uint64_t)(tail[10])) << 16; /* falls through */
271 case 10: k2 ^= ((uint64_t)(tail[ 9])) << 8; /* falls through */
272 case 9: k2 ^= ((uint64_t)(tail[ 8])) << 0;
273 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2;