Home
last modified time | relevance | path

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

/external/chromium_org/net/base/
Dint128.h56 uint64 hi_; variable
87 inline uint64 Uint128High64(const uint128& v) { return v.hi_; } in Uint128High64()
103 hi_ = b.hi_;
107 inline uint128::uint128(): lo_(0), hi_(0) { } in uint128()
108 inline uint128::uint128(uint64 top, uint64 bottom) : lo_(bottom), hi_(top) { } in uint128()
109 inline uint128::uint128(const uint128 &v) : lo_(v.lo_), hi_(v.hi_) { } in uint128()
110 inline uint128::uint128(const uint128_pod &v) : lo_(v.lo), hi_(v.hi) { } in uint128()
111 inline uint128::uint128(uint64 bottom) : lo_(bottom), hi_(0) { } in uint128()
112 inline uint128::uint128(uint32 bottom) : lo_(bottom), hi_(0) { } in uint128()
113 inline uint128::uint128(int bottom) : lo_(bottom), hi_(0) { in uint128()
[all …]
Dint128.cc15 return (o << b.hi_ << "::" << b.lo_); in operator <<()
/external/chromium_org/third_party/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/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.hpp148 Interval (bool hasNaN_, double lo_, double hi_) in Interval() argument
149 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_) {} in Interval()