Home
last modified time | relevance | path

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

/third_party/protobuf/src/google/protobuf/stubs/
Dint128.h100 uint64 hi_; variable
131 inline uint64 Uint128High64(const uint128& v) { return v.hi_; } in Uint128High64()
146 inline UINT128_CONSTEXPR uint128::uint128() : lo_(0), hi_(0) {} in uint128()
148 : lo_(bottom), hi_(top) {} in uint128()
150 : lo_(v.lo), hi_(v.hi) {} in uint128()
152 : lo_(bottom), hi_(0) {} in uint128()
155 : lo_(bottom), hi_(0) {} in uint128()
157 : lo_(bottom), hi_(static_cast<int64>((bottom < 0) ? -1 : 0)) {} in uint128()
163 hi_ = top; in Initialize()
219 hi_ op other.hi_; \
[all …]
Dint128.cc86 GOOGLE_LOG(FATAL) << "Division or mod by zero: dividend.hi=" << dividend.hi_ in DivModImpl()
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
Dint128_no_intrinsic.inc22 constexpr int64_t Int128High64(int128 v) { return v.hi_; }
27 lo_(low), hi_(high) {}
30 : lo_{static_cast<uint64_t>(v)}, hi_{v < 0 ? ~int64_t{0} : 0} {}
32 : lo_{static_cast<uint64_t>(v)}, hi_{v < 0 ? ~int64_t{0} : 0} {}
34 : lo_{static_cast<uint64_t>(v)}, hi_{v < 0 ? ~int64_t{0} : 0} {}
36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {}
38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {}
40 constexpr int128::int128(unsigned long long v) : lo_{v}, hi_{0} {}
43 : lo_{Uint128Low64(v)}, hi_{static_cast<int64_t>(Uint128High64(v))} {}
48 hi_{high}, lo_{low} {}
[all …]
Dint128.h229 uint64_t hi_; variable
231 uint64_t hi_; variable
465 int64_t hi_; variable
467 int64_t hi_; variable
634 constexpr uint64_t Uint128High64(uint128 v) { return v.hi_; } in Uint128High64()
641 : lo_{low}, hi_{high} {} in uint128()
645 hi_{v < 0 ? (std::numeric_limits<uint64_t>::max)() : 0} {}
648 hi_{v < 0 ? (std::numeric_limits<uint64_t>::max)() : 0} {}
651 hi_{v < 0 ? (std::numeric_limits<uint64_t>::max)() : 0} {}
653 constexpr uint128::uint128(unsigned int v) : lo_{v}, hi_{0} {} in uint128()
[all …]
/third_party/abseil-cpp/absl/numeric/
Dint128_no_intrinsic.inc22 constexpr int64_t Int128High64(int128 v) { return v.hi_; }
27 lo_(low), hi_(high) {}
30 : lo_{static_cast<uint64_t>(v)}, hi_{v < 0 ? ~int64_t{0} : 0} {}
32 : lo_{static_cast<uint64_t>(v)}, hi_{v < 0 ? ~int64_t{0} : 0} {}
34 : lo_{static_cast<uint64_t>(v)}, hi_{v < 0 ? ~int64_t{0} : 0} {}
36 constexpr int128::int128(unsigned int v) : lo_{v}, hi_{0} {}
38 constexpr int128::int128(unsigned long v) : lo_{v}, hi_{0} {}
40 constexpr int128::int128(unsigned long long v) : lo_{v}, hi_{0} {}
43 : lo_{Uint128Low64(v)}, hi_{static_cast<int64_t>(Uint128High64(v))} {}
48 hi_{high}, lo_{low} {}
[all …]
Dint128.h225 uint64_t hi_; variable
227 uint64_t hi_; variable
461 int64_t hi_; variable
463 int64_t hi_; variable
630 constexpr uint64_t Uint128High64(uint128 v) { return v.hi_; } in Uint128High64()
637 : lo_{low}, hi_{high} {} in uint128()
641 hi_{v < 0 ? (std::numeric_limits<uint64_t>::max)() : 0} {}
644 hi_{v < 0 ? (std::numeric_limits<uint64_t>::max)() : 0} {}
647 hi_{v < 0 ? (std::numeric_limits<uint64_t>::max)() : 0} {}
649 constexpr uint128::uint128(unsigned int v) : lo_{v}, hi_{0} {} in uint128()
[all …]
/third_party/openssl/crypto/modes/
Dmodes_local.h58 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
60 : "+r"(hi_),"+r"(lo_)); \
61 (u64)hi_<<32|lo_; })
76 # define BSWAP8(x) ({ u32 lo_=(u64)(x)>>32,hi_=(x); \
78 : "+r"(hi_),"+r"(lo_)); \
79 (u64)hi_<<32|lo_; })
/third_party/re2/util/
Dbenchmark.h107 hi_(0),
119 hi_(hi),
130 int hi() const { return hi_; } in hi()
139 int hi_; variable
Dbenchmark.cc26 hi_ = std::max(lo_, hi_); in Register()
/third_party/abseil-cpp/absl/random/
Duniform_real_distribution.h73 : lo_(lo), hi_(hi), range_(hi - lo) { in lo_()
85 result_type b() const { return hi_; } in b()
88 return a.lo_ == b.lo_ && a.hi_ == b.hi_;
97 result_type lo_, hi_, range_; variable
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
Duniform_real_distribution.h73 : lo_(lo), hi_(hi), range_(hi - lo) { in lo_()
85 result_type b() const { return hi_; } in b()
88 return a.lo_ == b.lo_ && a.hi_ == b.hi_;
97 result_type lo_, hi_, range_; variable
/third_party/vk-gl-cts/framework/common/
DtcuInterval.hpp79 Interval(bool hasNaN_, double lo_, double hi_) in Interval() argument
80 …: m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(-TCU_INFINITY), m_warningHi(TCU_INFINITY) {} in Interval()
82 Interval(bool hasNaN_, double lo_, double hi_, double wlo_, double whi_) in Interval() argument
83 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_), m_warningLo(wlo_), m_warningHi(whi_) {} in Interval()
106 void warning (double lo_, double hi_) in warning() argument
109 m_warningHi = hi_; in warning()
/third_party/re2/re2/
Dprog.h88 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; } in hi()
106 return lo_ <= c && c <= hi_; in Matches()
150 uint8_t hi_; // member
Dprog.cc36 hi_ = hi & 0xFF; in InitByteRange()
82 lo_, hi_, hint(), out()); in Dump()
Dcompile.cc505 uint8_t hi = inst_[id].hi_; in IsCachedRuneByteSuffix()
/third_party/boost/libs/proto/test/
Dtoy_spirit2.cpp127 , hi_(std::toupper(ch)) in ichar()
130 char lo_, hi_; member
341 if(this->done() || !utility::char_icmp(*this->first, ich.lo_, ich.hi_)) in operator ()()