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

  /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_; }
104 int hi() { DCHECK_EQ(opcode(), kInstByteRange); return hi_; }
105 int foldcase() { DCHECK_EQ(opcode(), kInstByteRange); return foldcase_; }
110 return p->inst(out())->opcode() == kInstByteRange;
113 // Does this inst (an kInstByteRange) match c?
115 DCHECK_EQ(opcode(), kInstByteRange);
156 struct { // opcode == kInstByteRange
350 int byte_inst_count_; // number of kInstByteRange instructions
prog.cc 25 set_out_opcode(out, kInstByteRange);
70 case kInstByteRange:
222 if (j->opcode() == kInstByteRange && j->out() == id &&
229 k->opcode() == kInstByteRange && k->out() == id &&
247 case kInstByteRange:
nfa.cc 264 case kInstByteRange:
317 case kInstByteRange:
644 case kInstByteRange:
bitstate.cc 214 case kInstByteRange: {
dfa.cc 621 case kInstByteRange: // These are useful.
820 case kInstByteRange: // just save these on the queue
    [all...]
onepass.cc 71 // In a regular expression program, only the kInstByteRange
74 // The kInstByteRange instructions correspond to literal characters
78 // kInstByteRange instructions together in interesting ways when
86 // advance the input pointer. Only kInstByteRange does.
91 // or finds a kInstByteRange instruction matching the byte.
93 // kInstByteRange instruction (at ip->out()) and waits for
98 // matter what, all the threads stop after a kInstByteRange
111 // past a kInstByteRange instruction at each input byte. This means
447 case kInstByteRange: {

Completed in 305 milliseconds