Home
last modified time | relevance | path

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

/third_party/abseil-cpp/absl/hash/internal/
Dcity.cc201 static uint64_t ShiftMix(uint64_t val) { return val ^ (val >> 47); } in ShiftMix() function
237 return ShiftMix(y * k2 ^ z * k0) * k2; in HashLen0to16()
293 b = ShiftMix((z + a) * mul + d + h) * mul; in HashLen33to64()
331 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64()
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/
Dcity.cc201 static uint64_t ShiftMix(uint64_t val) { return val ^ (val >> 47); } in ShiftMix() function
238 return ShiftMix(y * k2 ^ z * k0) * k2; in HashLen0to16()
294 b = ShiftMix((z + a) * mul + d + h) * mul; in HashLen33to64()
334 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64()
/third_party/mindspore/mindspore/lite/src/common/
Dstring_util.cc170 uint64_t ShiftMix(uint64_t value) { return value ^ (value >> 47); } in ShiftMix() function
192 return ShiftMix((y * k2) ^ (z * k0)) * k2; in HashStringLen0to16()
280 …return HashLen16(HashLen16(v.first, w.first, mul) + ShiftMix(y) * k0 + z, HashLen16(v.second, w.se… in StringHash64()