Searched defs:hi_ (Results 1 - 3 of 3) sorted by relevance

/external/chromium_org/net/base/
H A Dint128.h21 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/
H A Dprog.h53 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::__anon14292::__anon14293
/external/regex-re2/re2/
H A Dprog.h53 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::__anon26097::__anon26098

Completed in 113 milliseconds