Searched defs:Uint128High64 (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/smhasher/src/
H A DCity.h57 inline uint64 Uint128High64(const uint128& x) { return x.second; } function
83 uint64 a = (Uint128Low64(x) ^ Uint128High64(x)) * kMul;
85 uint64 b = (Uint128High64(x) ^ a) * kMul;
/external/chromium_org/net/base/
H A Dint128.h45 friend uint64 Uint128High64(const uint128& v);
87 inline uint64 Uint128High64(const uint128& v) { return v.hi_; } function
96 Uint128High64(lhs) == Uint128High64(rhs));
127 return (Uint128High64(lhs) == Uint128High64(rhs)) ? \
129 (Uint128High64(lhs) op Uint128High64(rhs)); \
142 const uint64 hi_flip = ~Uint128High64(val);
152 return !Uint128High64(va
[all...]

Completed in 143 milliseconds