Home | History | Annotate | Download | only in regex

Lines Matching refs:sopno

88 static char *dissect(struct match *, char *, char *, sopno, sopno);
89 static char *backref(struct match *, char *, char *, sopno, sopno, sopno, int);
90 static char *fast(struct match *, char *, char *, sopno, sopno);
91 static char *slow(struct match *, char *, char *, sopno, sopno);
92 static states step(struct re_guts *, sopno, sopno, states, int, states);
107 static void at(struct match *, char *, char *, char *, sopno, sopno);
136 const sopno gf = g->firststate+1; /* +1 for OEND */
137 const sopno gl = g->laststate;
227 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
250 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
291 dissect(struct match *m, char *start, char *stop, sopno startst, sopno stopst)
294 sopno ss; /* start sop of current subRE */
295 sopno es; /* end sop of current subRE */
300 sopno ssub; /* start sop of subsubRE */
301 sopno esub; /* end sop of subsubRE */
474 backref(struct match *m, char *start, char *stop, sopno startst, sopno stopst,
475 sopno lev, int rec) /* PLUS nesting level */
478 sopno ss; /* start sop of current subRE */
480 sopno ssub; /* start sop of subsubRE */
481 sopno esub; /* end sop of subsubRE */
674 fast(struct match *m, char *start, char *stop, sopno startst, sopno stopst)
758 slow(struct match *m, char *start, char *stop, sopno startst, sopno stopst)
839 sopno start, /* start state within strip */
840 sopno stop, /* state after stop state within strip */
847 sopno pc;
849 sopno look;
979 at(struct match *m, char *title, char *start, char *stop, sopno startst,
980 sopno stopst)