Searched refs:sopno (Results 1 – 3 of 3) sorted by relevance
/bionic/libc/upstream-netbsd/lib/libc/regex/ |
D | engine.c | 114 …t char *dissect(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst); 115 …kref(struct match *m, const char *start, const char *stop, sopno startst, sopno stopst, sopno lev,… 116 static const char *walk(struct match *m, const char *start, const char *stop, sopno startst, sopno … 117 static states step(struct re_guts *g, sopno start, sopno stop, states bef, wint_t ch, states aft, i… 136 …uct match *m, const char *title, const char *start, const char *stop, sopno startst, sopno stopst); 211 const sopno gf = g->firststate+1; /* +1 for OEND */ in matcher() 212 const sopno gl = g->laststate; in matcher() 359 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher() 382 dp = backref(m, m->coldp, endp, gf, gl, (sopno)0, 0); in matcher() 436 sopno startst, in dissect() [all …]
|
D | regex2.h | 80 typedef uint32_t sopno; typedef 184 sopno nstates; /* = number of sops */ 185 sopno firststate; /* the initial OEND (normally 0) */ 186 sopno laststate; /* the final OEND */ 200 sopno nplus; /* how deep does it nest +s? */
|
D | regcomp.c | 91 sopno start; 92 sopno back; 93 sopno fwd; 111 sopno ssize; /* malloced strip size (allocated) */ 112 sopno slen; /* malloced strip length (used) */ 116 sopno pbegin[NPAREN]; /* -> ( ([0] unused) */ 117 sopno pend[NPAREN]; /* -> ) ([0] unused) */ 162 static void repeat(struct parse *p, sopno start, int from, int to); 170 static sopno dupl(struct parse *p, sopno start, sopno finish); 172 static void doinsert(struct parse *p, sop op, size_t opnd, sopno pos); [all …]
|