Lines Matching defs:h2
127 uint64_t h2 = seed;
144 h1 = ROTL64(h1,27); h1 += h2; h1 = h1*5+0x52dce729;
146 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
148 h2 = ROTL64(h2,31); h2 += h1; h2 = h2*5+0x38495ab5;
174 k2 *= c2; k2 = ROTL64(k2,33); k2 *= c1; h2 ^= k2;
198 h1 ^= len; h2 ^= len;
200 h1 += h2;
201 h2 += h1;
204 h2 = fmix64(h2);
206 h1 += h2;
207 h2 += h1;
210 memcpy(out+sizeof(h1), &h2, sizeof(h2));
222 uint32_t h2 = seed;
245 h1 = ROTL32(h1,19); h1 += h2; h1 = h1*5+0x561ccd1b;
247 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
249 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747;
297 k2 *= c2; k2 = ROTL32(k2,16); k2 *= c3; h2 ^= k2;
313 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len;
315 h1 += h2; h1 += h3; h1 += h4;
316 h2 += h1; h3 += h1; h4 += h1;
319 h2 = fmix32(h2);
323 h1 += h2; h1 += h3; h1 += h4;
324 h2 += h1; h3 += h1; h4 += h1;
327 memcpy(out+sizeof(h1), &h2, sizeof(h2));