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

  /external/chromium_org/third_party/smhasher/src/
City.h 56 inline uint64 Uint128Low64(const uint128& x) { return x.first; }
83 uint64 a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
  /external/chromium_org/net/base/
int128.h 44 friend uint64 Uint128Low64(const uint128& v);
86 inline uint64 Uint128Low64(const uint128& v) { return v.lo_; }
95 return (Uint128Low64(lhs) == Uint128Low64(rhs) &&
128 (Uint128Low64(lhs) op Uint128Low64(rhs)) : \
143 const uint64 lo_flip = ~Uint128Low64(val);
152 return !Uint128High64(val) && !Uint128Low64(val);
158 return uint128(~Uint128High64(val), ~Uint128Low64(val));
164 Uint128Low64(lhs) op Uint128Low64(rhs));
    [all...]

Completed in 845 milliseconds