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

  /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...]
int128_unittest.cc 62 EXPECT_EQ(Uint128Low64(biggest), kuint64max);
77 EXPECT_EQ(Uint128Low64((uint128(1) << 64) - 1), kuint64max);
121 EXPECT_EQ(67890u, Uint128Low64(from_pod));
  /external/chromium_org/third_party/smhasher/src/
City.h 63 inline uint64 Uint128Low64(const uint128& x) { return x.first; }
90 uint64 a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
City.cpp 250 uint64 a = Uint128Low64(seed);
287 uint64 x = Uint128Low64(seed);
449 uint64 v = Uint128Low64(seed) + result[1];
  /external/chromium_org/net/quic/
quic_utils.cc 111 const uint64 lo = Uint128Low64(v);
120 const uint64 lo = Uint128Low64(v);

Completed in 166 milliseconds