Lines Matching refs:k1
169 static const uint64_t k1 = 0xb492b66fbe98f273ULL;
217 uint64_t a = fetch64(s) * k1;
275 0, seed, hash_16_bytes(seed, k1), rotate(seed ^ k1, 49),
276 seed * k1, shift_mix(seed), 0, seed };
298 h0 = rotate(h0 + h1 + h3 + fetch64(s + 8), 37) * k1;
299 h1 = rotate(h1 + h4 + fetch64(s + 48), 42) * k1;
302 h2 = rotate(h2 + h5, 33) * k1;
303 h3 = h4 * k1;
315 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2,
316 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0);