Searched defs:uint128 (Results 1 – 3 of 3) sorted by relevance
107 inline uint128::uint128(): lo_(0), hi_(0) { } in uint128() function108 inline uint128::uint128(uint64 top, uint64 bottom) : lo_(bottom), hi_(top) { } in uint128() function109 inline uint128::uint128(const uint128 &v) : lo_(v.lo_), hi_(v.hi_) { } in uint128() function110 inline uint128::uint128(const uint128_pod &v) : lo_(v.lo), hi_(v.hi) { } in uint128() function111 inline uint128::uint128(uint64 bottom) : lo_(bottom), hi_(0) { } in uint128() function112 inline uint128::uint128(uint32 bottom) : lo_(bottom), hi_(0) { } in uint128() function113 inline uint128::uint128(int bottom) : lo_(bottom), hi_(0) { in uint128() function
61 typedef std::pair<uint64, uint64> uint128; typedef
390 __uint128_t uint128; member