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;
191 case 8: k2 ^= (uint32_t) tail[ 7] << 24; JEMALLOC_FALLTHROUGH;
192 case 7: k2 ^= tail[ 6] << 16; JEMALLOC_FALLTHROUGH;
193 case 6: k2 ^= tail[ 5] << 8; JEMALLOC_FALLTHROUGH;
194 case 5: k2 ^= tail[ 4] << 0;
195 k2 *= c2; k2 = hash_rotl_32(k2, 16); k2 *= c3; h2 ^= k2;
243 uint64_t k2 = hash_get_block_64(blocks, i*2 + 1);
250 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2;
261 uint64_t k2 = 0;
264 case 15: k2 ^= ((uint64_t)(tail[14])) << 48; JEMALLOC_FALLTHROUGH;
265 case 14: k2 ^= ((uint64_t)(tail[13])) << 40; JEMALLOC_FALLTHROUGH;
266 case 13: k2 ^= ((uint64_t)(tail[12])) << 32; JEMALLOC_FALLTHROUGH;
267 case 12: k2 ^= ((uint64_t)(tail[11])) << 24; JEMALLOC_FALLTHROUGH;
268 case 11: k2 ^= ((uint64_t)(tail[10])) << 16; JEMALLOC_FALLTHROUGH;
269 case 10: k2 ^= ((uint64_t)(tail[ 9])) << 8; JEMALLOC_FALLTHROUGH;
270 case 9: k2 ^= ((uint64_t)(tail[ 8])) << 0;
271 k2 *= c2; k2 = hash_rotl_64(k2, 33); k2 *= c1; h2 ^= k2;