HomeSort by relevance Sort by last modified time
    Searched defs:hi_ (Results 1 - 3 of 3) 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...]
  /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
  /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::__anon13996::__anon13997

Completed in 417 milliseconds