Home
last modified time | relevance | path

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

/bionic/libc/upstream-netbsd/lib/libc/regex/
Dengine.c385 switch (OP(m->g->strip[es])) { in dissect()
391 while (OP(m->g->strip[es]) != O_CH) in dissect()
398 switch (OP(m->g->strip[ss])) { in dissect()
505 assert(OP(m->g->strip[esub]) == OOR1); in dissect()
510 assert(OP(m->g->strip[esub]) == OOR1); in dissect()
512 assert(OP(m->g->strip[esub]) == OOR2); in dissect()
515 if (OP(m->g->strip[esub]) == OOR2) in dissect()
518 assert(OP(m->g->strip[esub]) == O_CH); in dissect()
593 switch (OP(s = m->g->strip[ss])) { in backref()
651 assert(OP(s) == OOR2); in backref()
[all …]
Dregcomp.c684 assert(OP(p->strip[p->pbegin[i]]) == OLPAREN); in p_simp_re()
685 assert(OP(p->strip[p->pend[i]]) == ORPAREN); in p_simp_re()
1758 p->strip[pos] = (sop)(OP(p->strip[pos]) | value); in dofwd()
1849 switch (OP(s)) { in findmust()
1866 if (OP(s) != O_QUEST && OP(s) != O_CH && in findmust()
1867 OP(s) != OOR2) { in findmust()
1871 } while (OP(s) != O_QUEST && OP(s) != O_CH); in findmust()
1881 } while (OP(s) != OEND); in findmust()
1898 while (OP(s = *scan++) != OCHAR) in findmust()
1930 switch (OP(s)) { in pluscount()
[all …]
Dregex2.h117 #define OP(n) ((n)&OPRMASK) macro