Symbol: sopno
lib/libc/regex/engine.c
113
sopno, sopno);
lib/libc/regex/engine.c
142
const sopno gf = g->firststate+1; /* +1 for OEND */
lib/libc/regex/engine.c
143
const sopno gl = g->laststate;
lib/libc/regex/engine.c
233
dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
lib/libc/regex/engine.c
256
dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0);
lib/libc/regex/engine.c
295
dissect(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
296
sopno stopst)
lib/libc/regex/engine.c
299
sopno ss; /* start sop of current subRE */
lib/libc/regex/engine.c
300
sopno es; /* end sop of current subRE */
lib/libc/regex/engine.c
305
sopno ssub; /* start sop of subsubRE */
lib/libc/regex/engine.c
306
sopno esub; /* end sop of subsubRE */
lib/libc/regex/engine.c
477
backref(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
478
sopno stopst, sopno lev, int rec) /* PLUS nesting level */
lib/libc/regex/engine.c
481
sopno ss; /* start sop of current subRE */
lib/libc/regex/engine.c
483
sopno ssub; /* start sop of subsubRE */
lib/libc/regex/engine.c
484
sopno esub; /* end sop of subsubRE */
lib/libc/regex/engine.c
674
fast(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
675
sopno stopst)
lib/libc/regex/engine.c
763
slow(struct match *m, const char *start, const char *stop, sopno startst,
lib/libc/regex/engine.c
764
sopno stopst)
lib/libc/regex/engine.c
849
sopno start, /* start state within strip */
lib/libc/regex/engine.c
850
sopno stop, /* state after stop state within strip */
lib/libc/regex/engine.c
857
sopno pc;
lib/libc/regex/engine.c
859
sopno look;
lib/libc/regex/engine.c
88
static const char *dissect(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
89
sopno);
lib/libc/regex/engine.c
90
static const char *backref(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
91
sopno, sopno, int);
lib/libc/regex/engine.c
92
static const char *fast(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
93
sopno);
lib/libc/regex/engine.c
94
static const char *slow(struct match *, const char *, const char *, sopno,
lib/libc/regex/engine.c
95
sopno);
lib/libc/regex/engine.c
96
static states step(struct re_guts *, sopno, sopno, states, int, states);
lib/libc/regex/engine.c
990
sopno startst, sopno stopst)
lib/libc/regex/regcomp.c
100
static sopno pluscount(struct parse *, struct re_guts *);
lib/libc/regex/regcomp.c
1151
static sopno /* start of duplicate */
lib/libc/regex/regcomp.c
1153
sopno start, /* from here */
lib/libc/regex/regcomp.c
1154
sopno finish) /* to this less one */
lib/libc/regex/regcomp.c
1156
sopno ret = HERE();
lib/libc/regex/regcomp.c
1157
sopno len = finish - start;
lib/libc/regex/regcomp.c
1199
doinsert(struct parse *p, sop op, size_t opnd, sopno pos)
lib/libc/regex/regcomp.c
1201
sopno sn;
lib/libc/regex/regcomp.c
1234
dofwd(struct parse *p, sopno pos, sop value)
lib/libc/regex/regcomp.c
1248
enlarge(struct parse *p, sopno size)
lib/libc/regex/regcomp.c
1294
sopno newlen;
lib/libc/regex/regcomp.c
1297
sopno i;
lib/libc/regex/regcomp.c
1366
static sopno /* nesting depth */
lib/libc/regex/regcomp.c
1371
sopno plusnest = 0;
lib/libc/regex/regcomp.c
1372
sopno maxnest = 0;
lib/libc/regex/regcomp.c
239
sopno prevback;
lib/libc/regex/regcomp.c
240
sopno prevfwd;
lib/libc/regex/regcomp.c
241
sopno conc;
lib/libc/regex/regcomp.c
282
sopno pos;
lib/libc/regex/regcomp.c
285
sopno subno;
lib/libc/regex/regcomp.c
438
sopno start = HERE();
lib/libc/regex/regcomp.c
471
sopno pos;
lib/libc/regex/regcomp.c
473
sopno subno;
lib/libc/regex/regcomp.c
60
sopno ssize; /* malloced strip size (allocated) */
lib/libc/regex/regcomp.c
61
sopno slen; /* malloced strip length (used) */
lib/libc/regex/regcomp.c
65
sopno pbegin[NPAREN]; /* -> ( ([0] unused) */
lib/libc/regex/regcomp.c
66
sopno pend[NPAREN]; /* -> ) ([0] unused) */
lib/libc/regex/regcomp.c
86
static void repeat(struct parse *, sopno, int, int);
lib/libc/regex/regcomp.c
929
sopno start, /* operand from here to end of strip */
lib/libc/regex/regcomp.c
93
static sopno dupl(struct parse *, sopno, sopno);
lib/libc/regex/regcomp.c
933
sopno finish = HERE();
lib/libc/regex/regcomp.c
938
sopno copy;
lib/libc/regex/regcomp.c
95
static void doinsert(struct parse *, sop, size_t, sopno);
lib/libc/regex/regcomp.c
96
static void dofwd(struct parse *, sopno, sop);
lib/libc/regex/regcomp.c
97
static int enlarge(struct parse *, sopno);
lib/libc/regex/regex2.h
143
sopno nstates; /* = number of sops */
lib/libc/regex/regex2.h
144
sopno firststate; /* the initial OEND (normally 0) */
lib/libc/regex/regex2.h
145
sopno laststate; /* the final OEND */
lib/libc/regex/regex2.h
156
sopno nplus; /* how deep does it nest +s? */
regress/lib/libc/regex/debug.c
68
register sopno offset = 2;