HomeSort by relevance Sort by last modified time
    Searched defs:Uint128Low64 (Results 1 - 2 of 2) sorted by null

  /external/libtextclassifier/util/hash/
farmhash.h 33 inline uint64_t Uint128Low64(const uint128_t x) {
44 inline uint64_t Uint128Low64(const uint128_t x) { return x.first; }
106 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
130 uint64_t a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
  /external/protobuf/src/google/protobuf/stubs/
int128.h 83 friend uint64 Uint128Low64(const uint128& v);
128 inline uint64 Uint128Low64(const uint128& v) { return v.lo_; }
137 return (Uint128Low64(lhs) == Uint128Low64(rhs) &&
170 (Uint128Low64(lhs) op Uint128Low64(rhs)) : \
185 const uint64 lo_flip = ~Uint128Low64(val);
194 return !Uint128High64(val) && !Uint128Low64(val);
200 return uint128(~Uint128High64(val), ~Uint128Low64(val));
206 Uint128Low64(lhs) op Uint128Low64(rhs));
    [all...]

Completed in 77 milliseconds