Home
last modified time | relevance | path

Searched refs:hash_16_bytes (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DHashing.h170 inline uint64_t hash_16_bytes(uint64_t low, uint64_t high) { in hash_16_bytes() function
192 return hash_16_bytes(len + (a << 3), seed ^ fetch32(s + len - 4)); in hash_4to8_bytes()
198 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes()
206 return hash_16_bytes(llvm::rotr<uint64_t>(a - b, 43) + in hash_17to32_bytes()
261 hash_16_bytes(seed, k1), in create()
266 state.h6 = hash_16_bytes(state.h4, state.h5); in create()
304 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, in finalize()
305 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize()
614 return hash_16_bytes(seed + (a << 3), fetch32(s + 4));