Home
last modified time | relevance | path

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

/external/protobuf/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()
/external/regex-re2/re2/
Dprog.h104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; } in hi()
118 return lo_ <= c && c <= hi_; in Matches()
158 uint8 hi_; // member
Dprog.cc27 hi_ = hi & 0xFF; in InitByteRange()
73 lo_, hi_, out()); in Dump()
/external/deqp/framework/common/
DtcuInterval.hpp73 Interval (bool hasNaN_, double lo_, double hi_) in Interval() argument
74 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_) {} in Interval()