Searched refs:startst (Results 1 – 3 of 3) sorted by relevance
| /src/contrib/nvi/regex/ |
| H A D | engine.c | 92 … *dissect(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno startst, sopno stopst); 93 …ackref(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno startst, sopno stopst, so… 94 …R_T *fast(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno startst, sopno stopst); 95 …R_T *slow(struct match *m, const RCHAR_T *start, const RCHAR_T *stop, sopno startst, sopno stopst); 107 static void at(struct match *m, char *title, char *start, char *stop, sopno startst, sopno stopst); 293 sopno startst, sopno stopst) in dissect() argument 309 AT("diss", start, stop, startst, stopst); in dissect() 311 for (ss = startst; ss < stopst; ss = es) { in dissect() 475 sopno startst, sopno stopst, sopno lev) /* PLUS nesting level */ in backref() argument 491 AT("back", start, stop, startst, stopst); in backref() [all …]
|
| /src/contrib/llvm-project/llvm/lib/Support/ |
| H A D | regengine.inc | 294 /* Step back from "stop" to a position where the strip startst..stopst might 298 step_back(struct re_guts *g, const char *start, const char *stop, sopno startst, 305 /* Check whether the strip startst..stropst starts with a fixed character, 308 if (startst >= stopst) 310 if (OP(g->strip[startst]) != ORPAREN) 312 startst++; 314 if (OP(g->strip[startst]) != OCHAR) 318 char ch = OPND(g->strip[startst]); 322 sopno nextst = startst + 1; 336 dissect(struct match *m, const char *start, const char *stop, sopno startst, [all …]
|
| /src/lib/libc/regex/ |
| H A D | engine.c | 104 static const char *dissect(struct match *m, const char *start, const char *stop, sopno startst, sop… 105 static const char *backref(struct match *m, const char *start, const char *stop, sopno startst, sop… 106 static const char *walk(struct match *m, const char *start, const char *stop, sopno startst, sopno … 126 …uct match *m, const char *title, const char *start, const char *stop, sopno startst, sopno stopst); 414 sopno startst, in dissect() argument 431 AT("diss", start, stop, startst, stopst); in dissect() 433 for (ss = startst; ss < stopst; ss = es) { in dissect() 616 sopno startst, in backref() argument 635 AT("back", start, stop, startst, stopst); in backref() 640 for (ss = startst; !hard && ss < stopst; ss++) in backref() [all …]
|