Hashing.h | 180 inline uint64_t hash_16_bytes(uint64_t low, uint64_t high) { function in namespace:llvm::hashing::detail 202 return hash_16_bytes(len + (a << 3), seed ^ fetch32(s + len - 4)); 208 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; 216 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d, 269 0, seed, hash_16_bytes(seed, k1), rotate(seed ^ k1, 49), 271 state.h6 = hash_16_bytes(state.h4, state.h5); 309 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, 310 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); 624 return hash_16_bytes(seed + (a << 3), fetch32(s + 4)) [all...] |