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

  /external/regex-re2/re2/
compile.cc 174 Frag ByteRange(int lo, int hi, bool foldcase);
392 Frag Compiler::ByteRange(int lo, int hi, bool foldcase) {
486 Frag f = ByteRange(lo, hi, foldcase);
696 return ByteRange(r, r, foldcase);
700 return ByteRange(r, r, foldcase);
703 Frag f = ByteRange((uint8)buf[0], buf[0], false);
705 f = Cat(f, ByteRange((uint8)buf[i], buf[i], false));
787 return ByteRange(0x00, 0xFF, false);
1088 return Star(ByteRange(0x00, 0xff, false), true);
    [all...]
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 73 struct ByteRange {
80 ByteRange() : BeginOffset(), EndOffset() {}
81 ByteRange(uint64_t BeginOffset, uint64_t EndOffset)
90 bool operator<(const ByteRange &RHS) const {
98 friend bool operator<(const ByteRange &LHS, uint64_t RHSOffset) {
103 const ByteRange &RHS) {
107 bool operator==(const ByteRange &RHS) const {
110 bool operator!=(const ByteRange &RHS) const { return !operator==(RHS); }
119 struct Partition : public ByteRange {
143 Partition() : ByteRange(), IsSplittable() {
    [all...]

Completed in 155 milliseconds