Home | History | Annotate | Download | only in internal

Lines Matching refs:k2

154 			uint32_t k2 = hash_get_block_32(blocks, i * 4 + 1);
167 k2 *= c2;
168 k2 = hash_rotl_32(k2, 16);
169 k2 *= c3;
170 h2 ^= k2;
200 uint32_t k2 = 0;
235 k2 ^= (uint32_t)tail[7] << 24;
238 k2 ^= tail[6] << 16;
241 k2 ^= tail[5] << 8;
244 k2 ^= tail[4] << 0;
245 k2 *= c2;
246 k2 = hash_rotl_32(k2, 16);
247 k2 *= c3;
248 h2 ^= k2;
317 uint64_t k2 = hash_get_block_64(blocks, i * 2 + 1);
328 k2 *= c2;
329 k2 = hash_rotl_64(k2, 33);
330 k2 *= c1;
331 h2 ^= k2;
343 uint64_t k2 = 0;
347 k2 ^= ((uint64_t)(tail[14])) << 48;
350 k2 ^= ((uint64_t)(tail[13])) << 40;
353 k2 ^= ((uint64_t)(tail[12])) << 32;
356 k2 ^= ((uint64_t)(tail[11])) << 24;
359 k2 ^= ((uint64_t)(tail[10])) << 16;
362 k2 ^= ((uint64_t)(tail[9])) << 8;
365 k2 ^= ((uint64_t)(tail[8])) << 0;
366 k2 *= c2;
367 k2 = hash_rotl_64(k2, 33);
368 k2 *= c1;
369 h2 ^= k2;