Searched refs:hash_16_bytes (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ADT/ |
| D | Hashing.h | 182 inline uint64_t hash_16_bytes(uint64_t low, uint64_t high) { in hash_16_bytes() function 204 return hash_16_bytes(len + (a << 3), seed ^ fetch32(s + len - 4)); in hash_4to8_bytes() 210 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes() 218 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d, in hash_17to32_bytes() 271 0, seed, hash_16_bytes(seed, k1), rotate(seed ^ k1, 49), in create() 273 state.h6 = hash_16_bytes(state.h4, state.h5); in create() 311 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, in finalize() 312 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize() 625 return hash_16_bytes(seed + (a << 3), fetch32(s + 4));
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/IR/ |
| D | StructuralHash.cpp | 28 void update(uint64_t V) { Hash = hashing::detail::hash_16_bytes(Hash, V); } in update()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | FunctionComparator.cpp | 930 void add(uint64_t V) { Hash = hashing::detail::hash_16_bytes(Hash, V); } in add()
|