Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libc/port/regex/
H A Dengine.c437 while (OP(m->g->strip[es]) != (sop)O_CH) in dissect()
555 assert(OP(m->g->strip[esub]) == O_CH); in dissect()
565 case O_CH: in dissect()
677 } while (OP(s = m->g->strip[ss]) != (sop)O_CH); in backref()
741 if (OP(m->g->strip[esub]) == (sop)O_CH) in backref()
750 assert(OP(m->g->strip[esub]) == O_CH); in backref()
993 OP(s = g->strip[pc+look]) != (sop)O_CH; in step()
1001 if (OP(g->strip[pc+OPND(s)]) != (sop)O_CH) { in step()
1006 case O_CH: /* just empty */ in step()
H A Dregcomp.c481 ASTERN(O_CH, THERETHERE()); in p_ere_exp()
571 ASTERN(O_CH, bc->back); in p_branch_fix_tail()
1189 ASTERN(O_CH, THERETHERE()); in repeat()
1201 ASTERN(O_CH, THERETHERE()); in repeat()
1610 OP(s) != (sop)O_CH && OP(s) != (sop)OOR2) { in findmust()
1614 } while (OP(s) != (sop)O_QUEST && OP(s) != (sop)O_CH); in findmust()
1621 case O_CH: in findmust()
1740 while (OP(s) != (sop)O_QUEST && OP(s) != (sop)O_CH) { in altoffset()
1757 OP(s) != (sop)O_CH && OP(s) != (sop)OOR2) in altoffset()
1759 } while (OP(s) != (sop)O_QUEST && OP(s) != (sop)O_CH); in altoffset()
H A Dregex2.h100 #define O_CH (18U<<OPSHIFT) /* end choice back to OOR1 */ macro