Home
last modified time | relevance | path

Searched refs:O_CH (Results 1 – 3 of 3) sorted by relevance

/bionic/libc/upstream-netbsd/lib/libc/regex/
Dengine.c468 while (OP(m->g->strip[es]) != O_CH) in dissect()
591 assert(OP(m->g->strip[esub]) == O_CH); in dissect()
601 case O_CH: in dissect()
763 } while (OP(s = m->g->strip[ss]) != O_CH); in backref()
828 if (OP(m->g->strip[esub]) == O_CH) in backref()
837 assert(OP(m->g->strip[esub]) == O_CH); in backref()
1141 OP(s = g->strip[pc+look]) != O_CH; in step()
1149 if (OP(g->strip[pc+OPND(s)]) != O_CH) { in step()
1154 case O_CH: /* just empty */ in step()
Dregcomp.c655 ASTERN(O_CH, THERETHERE()); in p_ere_exp()
748 ASTERN(O_CH, bc->back); in p_branch_fix_tail()
1608 ASTERN(O_CH, THERETHERE());
1620 ASTERN(O_CH, THERETHERE());
2069 OP(s) != O_CH && OP(s) != OOR2) {
2073 } while (OP(s) != O_QUEST && OP(s) != O_CH);
2084 case O_CH:
2211 while (OP(s) != O_QUEST && OP(s) != O_CH) {
2228 OP(s) != O_CH && OP(s) != OOR2)
2230 } while (OP(s) != O_QUEST && OP(s) != O_CH);
Dregex2.h106 #define O_CH (18U<<OPSHIFT) /* end choice back to OOR1 */ macro