Home
last modified time | relevance | path

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

/external/chromium_org/net/base/
Dint128.h107 inline uint128::uint128(): lo_(0), hi_(0) { } in uint128() function
108 inline uint128::uint128(uint64 top, uint64 bottom) : lo_(bottom), hi_(top) { } in uint128() function
109 inline uint128::uint128(const uint128 &v) : lo_(v.lo_), hi_(v.hi_) { } in uint128() function
110 inline uint128::uint128(const uint128_pod &v) : lo_(v.lo), hi_(v.hi) { } in uint128() function
111 inline uint128::uint128(uint64 bottom) : lo_(bottom), hi_(0) { } in uint128() function
112 inline uint128::uint128(uint32 bottom) : lo_(bottom), hi_(0) { } in uint128() function
113 inline uint128::uint128(int bottom) : lo_(bottom), hi_(0) { in uint128() function
/external/chromium_org/third_party/smhasher/src/
DCity.h61 typedef std::pair<uint64, uint64> uint128; typedef
/external/lldb/include/lldb/Core/
DRegisterValue.h390 __uint128_t uint128; member