Searched refs:hash_16_bytes (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | Hashing.h | 171 inline uint64_t hash_16_bytes(uint64_t low, uint64_t high) { in hash_16_bytes() function 193 return hash_16_bytes(len + (a << 3), seed ^ fetch32(s + len - 4)); in hash_4to8_bytes() 199 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes() 207 return hash_16_bytes(llvm::rotr<uint64_t>(a - b, 43) + in hash_17to32_bytes() 262 hash_16_bytes(seed, k1), in create() 267 state.h6 = hash_16_bytes(state.h4, state.h5); in create() 305 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, in finalize() 306 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize() 616 return hash_16_bytes(seed + (a << 3), fetch32(s + 4));
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | IRNormalizer.cpp | 141 Hash = hashing::detail::hash_16_bytes(Hash, I.getOpcode()); in nameBasicBlocks() 218 Hash = hashing::detail::hash_16_bytes(Hash, I->getOpcode()); in nameAsInitialInstruction() 226 Hash = hashing::detail::hash_16_bytes(Hash, Output); in nameAsInitialInstruction() 301 Hash = hashing::detail::hash_16_bytes(Hash, I->getOpcode()); in nameAsRegularInstruction() 315 Hash = hashing::detail::hash_16_bytes(Hash, Code); in nameAsRegularInstruction()
|