Searched refs:WeakHashLen32WithSeeds (Results 1 – 2 of 2) sorted by relevance
/third_party/abseil-cpp/absl/hash/internal/ |
D | city.cc | 256 static std::pair<uint64_t, uint64_t> WeakHashLen32WithSeeds(uint64_t w, uint64_t x, in WeakHashLen32WithSeeds() function 269 static std::pair<uint64_t, uint64_t> WeakHashLen32WithSeeds(const char *s, uint64_t a, in WeakHashLen32WithSeeds() function 271 return WeakHashLen32WithSeeds(Fetch64(s), Fetch64(s + 8), Fetch64(s + 16), in WeakHashLen32WithSeeds() 313 std::pair<uint64_t, uint64_t> v = WeakHashLen32WithSeeds(s + len - 64, len, z); in CityHash64() 314 std::pair<uint64_t, uint64_t> w = WeakHashLen32WithSeeds(s + len - 32, y + k1, x); in CityHash64() 325 v = WeakHashLen32WithSeeds(s, v.second * k1, x + w.first); in CityHash64() 326 w = WeakHashLen32WithSeeds(s + 32, z + w.second, y + Fetch64(s + 16)); in CityHash64()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/hash/internal/ |
D | city.cc | 257 static std::pair<uint64_t, uint64_t> WeakHashLen32WithSeeds( in WeakHashLen32WithSeeds() function 269 static std::pair<uint64_t, uint64_t> WeakHashLen32WithSeeds(const char *s, in WeakHashLen32WithSeeds() function 272 return WeakHashLen32WithSeeds(Fetch64(s), Fetch64(s + 8), Fetch64(s + 16), in WeakHashLen32WithSeeds() 315 WeakHashLen32WithSeeds(s + len - 64, len, z); in CityHash64() 317 WeakHashLen32WithSeeds(s + len - 32, y + k1, x); in CityHash64() 328 v = WeakHashLen32WithSeeds(s, v.second * k1, x + w.first); in CityHash64() 329 w = WeakHashLen32WithSeeds(s + 32, z + w.second, y + Fetch64(s + 16)); in CityHash64()
|