Home
last modified time | relevance | path

Searched refs:hi_ (Results 1 – 2 of 2) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/src/google/protobuf/stubs/
Dint128.h98 uint64 hi_; variable
129 inline uint64 Uint128High64(const uint128& v) { return v.hi_; } in Uint128High64()
144 inline UINT128_CONSTEXPR uint128::uint128() : lo_(0), hi_(0) {} in uint128()
146 : lo_(bottom), hi_(top) {} in uint128()
148 : lo_(v.lo), hi_(v.hi) {} in uint128()
150 : lo_(bottom), hi_(0) {} in uint128()
153 : lo_(bottom), hi_(0) {} in uint128()
155 : lo_(bottom), hi_(static_cast<int64>((bottom < 0) ? -1 : 0)) {} in uint128()
161 hi_ = top; in Initialize()
217 hi_ op other.hi_; \
[all …]
Dint128.cc85 GOOGLE_LOG(FATAL) << "Division or mod by zero: dividend.hi=" << dividend.hi_ in DivModImpl()