Lines Matching defs:h3
164 uint32_t h3 = seed;
200 h2 = ROTL32(h2,17); h2 += h3; h2 = h2*5+0x0bcaa747;
202 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
204 h3 = ROTL32(h3,15); h3 += h4; h3 = h3*5+0x96cd1c35;
232 k3 *= c3; k3 = ROTL32(k3,17); k3 *= c4; h3 ^= k3;
250 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len;
252 h1 += h2; h1 += h3; h1 += h4;
253 h2 += h1; h3 += h1; h4 += h1;
257 h3 = fmix_32(h3);
260 h1 += h2; h1 += h3; h1 += h4;
261 h2 += h1; h3 += h1; h4 += h1;
265 ((uint32_t*)out)[2] = h3;