Lines Matching refs:h4
131 uint32_t h4 = seed; in hash_x86_128() local
161 h3 = hash_rotl_32(h3, 15); h3 += h4; in hash_x86_128()
164 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128()
166 h4 = hash_rotl_32(h4, 13); h4 += h1; in hash_x86_128()
167 h4 = h4*5 + 0x32ac3b17; in hash_x86_128()
183 k4 *= c4; k4 = hash_rotl_32(k4, 18); k4 *= c1; h4 ^= k4; in hash_x86_128()
206 h1 ^= len; h2 ^= len; h3 ^= len; h4 ^= len; in hash_x86_128()
208 h1 += h2; h1 += h3; h1 += h4; in hash_x86_128()
209 h2 += h1; h3 += h1; h4 += h1; in hash_x86_128()
214 h4 = hash_fmix_32(h4); in hash_x86_128()
216 h1 += h2; h1 += h3; h1 += h4; in hash_x86_128()
217 h2 += h1; h3 += h1; h4 += h1; in hash_x86_128()
220 r_out[1] = (((uint64_t) h4) << 32) | h3; in hash_x86_128()