• Home
  • Raw
  • Download

Lines Matching refs:HashLen16

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()
1236 STATIC_INLINE uint64_t HashLen16(uint64_t u, uint64_t v) { in HashLen16() function
1240 STATIC_INLINE uint64_t HashLen16(uint64_t u, uint64_t v, uint64_t mul) { in HashLen16() function
1257 return HashLen16(c, d, mul); in HashLen0to16()
1262 return HashLen16(len + (a << 3), Fetch32(s + len - 4), mul); in HashLen0to16()
1314 c = HashLen16(Fetch(s + len - 8) + k1, a); in CityMurmur()
1315 d = HashLen16(b + len, c + Fetch(s + len - 16)); in CityMurmur()
1328 a = HashLen16(a, c); in CityMurmur()
1329 b = HashLen16(d, b); in CityMurmur()
1330 return uint128_t(a ^ b, HashLen16(b, a)); in CityMurmur()
1390 x = HashLen16(x, v.first); in CityHash128WithSeed()
1391 y = HashLen16(y + z, w.first); in CityHash128WithSeed()
1392 return uint128_t(HashLen16(x + v.second, w.second) + y, in CityHash128WithSeed()
1393 HashLen16(x + w.second, y + v.second)); in CityHash128WithSeed()