/external/libtextclassifier/native/utils/hash/ |
D | cityhash.cc | 46 uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 62 return HashLen16(a, Rotate(b + len, len)) ^ b; in HashLen0to16() 66 return HashLen16(len + (a << 3), absl::little_endian::Load32(s + len - 4)); in HashLen0to16() 114 return HashLen16(Rotate(a - b, 43) + Rotate(c, 30) + d, in HashLen17to32() 160 uint64_t z = HashLen16(absl::little_endian::Load64(s + len - 48) + len, in CityHash64() 185 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64() 186 HashLen16(v.second, w.second) + x); in CityHash64()
|
D | farmhash.cc | 366 STATIC_INLINE uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 370 STATIC_INLINE uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 387 return HashLen16(c, d, mul); in HashLen0to16() 392 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 413 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 449 uint64_t z = HashLen16(y, a + Rotate(b + k2, 18) + c, mul); in HashLen33to64() 454 return HashLen16(Rotate(e + f, 43) + Rotate(g, 30) + h, in HashLen33to64() 508 return HashLen16(HashLen16(v.first, w.first, mul) + ShiftMix(y) * k0 + z, in Hash64() 509 HashLen16(v.second, w.second, mul) + x, in Hash64() 520 return HashLen16(Hash64(s, len) - seed0, seed1); in Hash64WithSeeds() [all …]
|
/external/openscreen/third_party/abseil/src/absl/hash/internal/ |
D | city.cc | 203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 213 static uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 215 return HashLen16(u, v, kMul); in HashLen16() 225 return HashLen16(c, d, mul); in HashLen0to16() 230 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 251 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 313 uint64_t z = HashLen16(Fetch64(s + len - 48) + len, Fetch64(s + len - 24)); in CityHash64() 334 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64() 335 HashLen16(v.second, w.second) + x); in CityHash64() 344 return HashLen16(CityHash64(s, len) - seed0, seed1); in CityHash64WithSeeds()
|
/external/angle/third_party/abseil-cpp/absl/hash/internal/ |
D | city.cc | 203 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 213 static uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 215 return HashLen16(u, v, kMul); in HashLen16() 225 return HashLen16(c, d, mul); in HashLen0to16() 230 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 251 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 313 uint64_t z = HashLen16(Fetch64(s + len - 48) + len, Fetch64(s + len - 24)); in CityHash64() 334 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64() 335 HashLen16(v.second, w.second) + x); in CityHash64() 344 return HashLen16(CityHash64(s, len) - seed0, seed1); in CityHash64WithSeeds()
|
/external/webrtc/third_party/abseil-cpp/absl/hash/internal/ |
D | city.cc | 203 static uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 207 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 224 return HashLen16(c, d, mul); in HashLen0to16() 229 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 250 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 312 uint64_t z = HashLen16(Fetch64(s + len - 48) + len, Fetch64(s + len - 24)); in CityHash64() 331 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64() 332 HashLen16(v.second, w.second) + x); in CityHash64() 341 return HashLen16(CityHash64(s, len) - seed0, seed1); in CityHash64WithSeeds()
|
/external/abseil-cpp/absl/hash/internal/ |
D | city.cc | 203 static uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 207 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 224 return HashLen16(c, d, mul); in HashLen0to16() 229 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 250 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 312 uint64_t z = HashLen16(Fetch64(s + len - 48) + len, Fetch64(s + len - 24)); in CityHash64() 331 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64() 332 HashLen16(v.second, w.second) + x); in CityHash64() 341 return HashLen16(CityHash64(s, len) - seed0, seed1); in CityHash64WithSeeds()
|
/external/libtextclassifier/abseil-cpp/absl/hash/internal/ |
D | city.cc | 203 static uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 207 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 224 return HashLen16(c, d, mul); in HashLen0to16() 229 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 250 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 312 uint64_t z = HashLen16(Fetch64(s + len - 48) + len, Fetch64(s + len - 24)); in CityHash64() 331 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64() 332 HashLen16(v.second, w.second) + x); in CityHash64() 341 return HashLen16(CityHash64(s, len) - seed0, seed1); in CityHash64WithSeeds()
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/hash/internal/ |
D | city.cc | 203 static uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 207 static uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 224 return HashLen16(c, d, mul); in HashLen0to16() 229 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 250 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 312 uint64_t z = HashLen16(Fetch64(s + len - 48) + len, Fetch64(s + len - 24)); in CityHash64() 331 return HashLen16(HashLen16(v.first, w.first) + ShiftMix(y) * k1 + z, in CityHash64() 332 HashLen16(v.second, w.second) + x); in CityHash64() 341 return HashLen16(CityHash64(s, len) - seed0, seed1); in CityHash64WithSeeds()
|
/external/icing/icing/text_classifier/lib3/utils/hash/ |
D | farmhash.cc | 364 STATIC_INLINE uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function 368 STATIC_INLINE uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function 385 return HashLen16(c, d, mul); in HashLen0to16() 390 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16() 411 return HashLen16(Rotate(a + b, 43) + Rotate(c, 30) + d, in HashLen17to32() 447 uint64_t z = HashLen16(y, a + Rotate(b + k2, 18) + c, mul); in HashLen33to64() 452 return HashLen16(Rotate(e + f, 43) + Rotate(g, 30) + h, in HashLen33to64() 506 return HashLen16(HashLen16(v.first, w.first, mul) + ShiftMix(y) * k0 + z, in Hash64() 507 HashLen16(v.second, w.second, mul) + x, in Hash64() 518 return HashLen16(Hash64(s, len) - seed0, seed1); in Hash64WithSeeds() [all …]
|