Home
last modified time | relevance | path

Searched refs:lo_ (Results 1 – 19 of 19) sorted by relevance

/third_party/protobuf/src/google/protobuf/stubs/
Dint128.h99 uint64 lo_; variable
130 inline uint64 Uint128Low64(const uint128& v) { return v.lo_; } in Uint128Low64()
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()
164 lo_ = bottom; in Initialize()
220 lo_ op other.lo_; \
[all …]
Dint128.cc87 << ", lo=" << dividend.lo_; in DivModImpl()
164 if (high.lo_ != 0) { in operator <<()
165 os << high.lo_; in operator <<()
167 os << mid.lo_; in operator <<()
169 } else if (mid.lo_ != 0) { in operator <<()
170 os << mid.lo_; in operator <<()
173 os << low.lo_; in operator <<()
/third_party/abseil-cpp/absl/numeric/
Dint128.h224 uint64_t lo_; variable
228 uint64_t lo_; variable
460 uint64_t lo_; variable
464 uint64_t lo_; variable
628 constexpr uint64_t Uint128Low64(uint128 v) { return v.lo_; } in Uint128Low64()
637 : lo_{low}, hi_{high} {} in uint128()
640 : lo_{static_cast<uint64_t>(v)}, in uint128()
643 : lo_{static_cast<uint64_t>(v)}, in uint128()
646 : lo_{static_cast<uint64_t>(v)}, in uint128()
649 constexpr uint128::uint128(unsigned int v) : lo_{v}, hi_{0} {} in uint128()
[all …]
Dint128_no_intrinsic.inc20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; }
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 …]
/third_party/skia/third_party/externals/abseil-cpp/absl/numeric/
Dint128_no_intrinsic.inc20 constexpr uint64_t Int128Low64(int128 v) { return v.lo_; }
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.h228 uint64_t lo_; variable
232 uint64_t lo_; variable
464 uint64_t lo_; variable
468 uint64_t lo_; variable
632 constexpr uint64_t Uint128Low64(uint128 v) { return v.lo_; } in Uint128Low64()
641 : lo_{low}, hi_{high} {} in uint128()
644 : lo_{static_cast<uint64_t>(v)}, in uint128()
647 : lo_{static_cast<uint64_t>(v)}, in uint128()
650 : lo_{static_cast<uint64_t>(v)}, in uint128()
653 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/abseil-cpp/absl/random/
Duniform_int_distribution.h73 : lo_(lo), in lo_() function
80 result_type a() const { return lo_; } in a()
82 return static_cast<result_type>(static_cast<unsigned_type>(lo_) + range_); in b()
86 return a.lo_ == b.lo_ && a.range_ == b.range_;
97 result_type lo_; variable
Duniform_real_distribution.h73 : lo_(lo), hi_(hi), range_(hi - lo) { in lo_() function
84 result_type a() const { return lo_; } in a()
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_int_distribution.h73 : lo_(lo), in lo_() function
80 result_type a() const { return lo_; } in a()
82 return static_cast<result_type>(static_cast<unsigned_type>(lo_) + range_); in b()
86 return a.lo_ == b.lo_ && a.range_ == b.range_;
97 result_type lo_; variable
Duniform_real_distribution.h73 : lo_(lo), hi_(hi), range_(hi - lo) { in lo_() function
84 result_type a() const { return lo_; } in a()
88 return a.lo_ == b.lo_ && a.hi_ == b.hi_;
97 result_type lo_, hi_, range_; variable
/third_party/re2/util/
Dbenchmark.h106 lo_(0),
118 lo_(lo),
129 int lo() const { return lo_; } in lo()
138 int lo_; variable
Dbenchmark.cc25 lo_ = std::max(1, lo_); in Register()
26 hi_ = std::max(lo_, hi_); in Register()
/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
108 m_warningLo = lo_; in warning()
/third_party/re2/re2/
Dprog.h87 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; } in lo()
106 return lo_ <= c && c <= hi_; in Matches()
149 uint8_t lo_; // byte range is lo_-hi_ inclusive member
Dprog.cc35 lo_ = lo & 0xFF; in InitByteRange()
82 lo_, hi_, hint(), out()); in Dump()
Dcompile.cc504 uint8_t lo = inst_[id].lo_; in IsCachedRuneByteSuffix()
/third_party/boost/libs/proto/test/
Dtoy_spirit2.cpp126 : lo_(std::tolower(ch)) in ichar()
130 char lo_, hi_; member
341 if(this->done() || !utility::char_icmp(*this->first, ich.lo_, ich.hi_)) in operator ()()
/third_party/mesa3d/src/amd/compiler/
Daco_register_allocation.cpp127 PhysReg lo_; member
131 PhysReg lo() const { return lo_; } in lo()
138 lo_ = PhysReg{lo_.reg() + stride}; in operator +=()
142 bool operator!=(const PhysRegInterval& oth) const { return lo_ != oth.lo_ || size != oth.size; } in operator !=()
154 PhysRegIterator begin() const { return {lo_}; } in begin()
156 PhysRegIterator end() const { return {PhysReg{lo_ + size}}; } in end()