Searched refs:hash_16_bytes (Results 1 – 2 of 2) sorted by relevance
/external/llvm/include/llvm/ADT/ |
D | Hashing.h | 180 inline uint64_t hash_16_bytes(uint64_t low, uint64_t high) { in hash_16_bytes() function 202 return hash_16_bytes(len + (a << 3), seed ^ fetch32(s + len - 4)); in hash_4to8_bytes() 208 return hash_16_bytes(seed ^ a, rotate(b + len, len)) ^ b; in hash_9to16_bytes() 216 return hash_16_bytes(rotate(a - b, 43) + rotate(c ^ seed, 30) + d, in hash_17to32_bytes() 269 0, seed, hash_16_bytes(seed, k1), rotate(seed ^ k1, 49), in create() 271 state.h6 = hash_16_bytes(state.h4, state.h5); in create() 309 return hash_16_bytes(hash_16_bytes(h3, h5) + shift_mix(h1) * k1 + h2, in finalize() 310 hash_16_bytes(h4, h6) + shift_mix(length) * k1 + h0); in finalize() 624 return hash_16_bytes(seed + (a << 3), fetch32(s + 4));
|
/external/llvm/lib/Transforms/IPO/ |
D | MergeFunctions.cpp | 1297 Hash = llvm::hashing::detail::hash_16_bytes(Hash, V); in add()
|