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

  /external/chromium_org/net/base/
int128.h 21 uint128(uint64 bottom); // hi_ = 0
53 // having lo_ first, hi_ last.
56 uint64 hi_; member in class:uint128
87 inline uint64 Uint128High64(const uint128& v) { return v.hi_; }
103 hi_ = b.hi_;
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_) { }
    [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_]
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
118 return lo_ <= c && c <= hi_;
157 uint8 lo_; // byte range is lo_-hi_ inclusive
158 uint8 hi_; // member in struct:re2::Prog::Inst::__anon19513::__anon19514
prog.cc 27 hi_ = hi & 0xFF;
73 lo_, hi_, out());
  /external/regex-re2/re2/
prog.h 53 kInstByteRange, // next (possible case-folded) byte must be in [lo_, hi_]
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
118 return lo_ <= c && c <= hi_;
157 uint8 lo_; // byte range is lo_-hi_ inclusive
158 uint8 hi_; // member in struct:re2::Prog::Inst::__anon34909::__anon34910
prog.cc 27 hi_ = hi & 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 162 milliseconds