Searched refs:sopno (Results 1 – 3 of 3) sorted by relevance
/external/llvm/lib/Support/ |
D | regcomp.c | 61 sopno ssize; /* malloced strip size (allocated) */ 62 sopno slen; /* malloced strip length (used) */ 66 sopno pbegin[NPAREN]; /* -> ( ([0] unused) */ 67 sopno pend[NPAREN]; /* -> ) ([0] unused) */ 86 static void repeat(struct parse *, sopno, int, int); 99 static sopno dupl(struct parse *, sopno, sopno); 101 static void doinsert(struct parse *, sop, size_t, sopno); 102 static void dofwd(struct parse *, sopno, sop); 103 static void enlarge(struct parse *, sopno); 106 static sopno pluscount(struct parse *, struct re_guts *); [all …]
|
D | regex2.h | 63 typedef long sopno; typedef 135 sopno nstates; /* = number of sops */ 136 sopno firststate; /* the initial OEND (normally 0) */ 137 sopno laststate; /* the final OEND */ 150 sopno nplus; /* how deep does it nest +s? */
|
D | regengine.inc | 89 static const char *dissect(struct match *, const char *, const char *, sopno, 90 sopno); 91 static const char *backref(struct match *, const char *, const char *, sopno, 92 sopno, sopno, int); 93 static const char *fast(struct match *, const char *, const char *, sopno, sopno); 94 static const char *slow(struct match *, const char *, const char *, sopno, sopno); 95 static states step(struct re_guts *, sopno, sopno, states, int, states); 110 static void at(struct match *, char *, char *, char *, sopno, sopno); 140 const sopno gf = g->firststate+1; /* +1 for OEND */ 141 const sopno gl = g->laststate; [all …]
|