HomeSort by relevance Sort by last modified time
    Searched refs:lo_ (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/net/base/
int128.h 53 // having lo_ first, hi_ last.
55 uint64 lo_; member in class:uint128
86 inline uint64 Uint128Low64(const uint128& v) { return v.lo_; }
102 lo_ = b.lo_;
107 inline uint128::uint128(): lo_(0), hi_(0) { }
108 inline uint128::uint128(uint64 top, uint64 bottom) : lo_(bottom), hi_(top) { }
109 inline uint128::uint128(const uint128 &v) : lo_(v.lo_), hi_(v.hi_) { }
110 inline uint128::uint128(const uint128_pod &v) : lo_(v.lo), hi_(v.hi) {
    [all...]
int128.cc 15 return (o << b.hi_ << "::" << b.lo_);
  /external/chromium_org/third_party/re2/re2/
prog.h 53 kInstByteRange, // next (possible case-folded) byte must be in [lo_, hi_]
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; }
118 return lo_ <= c && c <= hi_;
157 uint8 lo_; // byte range is lo_-hi_ inclusive member in struct:re2::Prog::Inst::__anon18770::__anon18771
prog.cc 26 lo_ = lo & 0xFF;
73 lo_, hi_, out());
  /external/regex-re2/re2/
prog.h 53 kInstByteRange, // next (possible case-folded) byte must be in [lo_, hi_]
103 int lo() { DCHECK_EQ(opcode(), kInstByteRange); return lo_; }
118 return lo_ <= c && c <= hi_;
157 uint8 lo_; // byte range is lo_-hi_ inclusive member in struct:re2::Prog::Inst::__anon34023::__anon34024
prog.cc 26 lo_ = lo & 0xFF;
73 lo_, hi_, out());
  /external/deqp/framework/common/
tcuInterval.hpp 148 Interval (bool hasNaN_, double lo_, double hi_)
149 : m_hasNaN(hasNaN_), m_lo(lo_), m_hi(hi_) {}

Completed in 84 milliseconds