Searched defs:uint128 (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/third_party/smhasher/src/
H A DCity.h61 typedef std::pair<uint64, uint64> uint128; typedef
63 inline uint64 Uint128Low64(const uint128& x) { return x.first; }
64 inline uint64 Uint128High64(const uint128& x) { return x.second; }
79 uint128 CityHash128(const char *s, size_t len);
83 uint128 CityHash128WithSeed(const char *s, size_t len, uint128 seed);
87 inline uint64 Hash128to64(const uint128& x) {
103 uint128 CityHashCrc128(const char *s, size_t len);
107 uint128 CityHashCrc128WithSeed(const char *s, size_t len, uint128 see
[all...]
/external/chromium_org/net/base/
H A Dint128.h15 class uint128 { class
17 uint128(); // Sets to 0, but don't trust on this behavior.
18 uint128(uint64 top, uint64 bottom);
19 uint128(int bottom);
20 uint128(uint32 bottom); // Top 96 bits = 0
21 uint128(uint64 bottom); // hi_ = 0
22 uint128(const uint128 &val);
23 uint128(const uint128_pod &val);
27 uint128
107 inline uint128::uint128(): lo_(0), hi_(0) { } function in class:uint128
108 inline uint128::uint128(uint64 top, uint64 bottom) : lo_(bottom), hi_(top) { } function in class:uint128
109 inline uint128::uint128(const uint128 &v) : lo_(v.lo_), hi_(v.hi_) { } function in class:uint128
110 inline uint128::uint128(const uint128_pod &v) : lo_(v.lo), hi_(v.hi) { } function in class:uint128
111 inline uint128::uint128(uint64 bottom) : lo_(bottom), hi_(0) { } function in class:uint128
112 inline uint128::uint128(uint32 bottom) : lo_(bottom), hi_(0) { } function in class:uint128
113 inline uint128::uint128(int bottom) : lo_(bottom), hi_(0) { function in class:uint128
[all...]
/external/lldb/include/lldb/Core/
H A DRegisterValue.h87 m_data.uint128 = inst;
251 m_data.uint128 = uint;
308 m_data.uint128 = uint;
390 __uint128_t uint128; member in union:lldb_private::RegisterValue::__anon25227

Completed in 270 milliseconds