Home
last modified time | relevance | path

Searched refs:sopno (Results 1 – 4 of 4) sorted by relevance

/mirbsd/src/lib/libc/regex/
Dengine.c90 static const char *dissect(struct match *, const char *, const char *, sopno,
91 sopno);
92 static const char *backref(struct match *, const char *, const char *, sopno,
93 sopno, sopno, int);
94 static const char *fast(struct match *, const char *, const char *, sopno,
95 sopno);
96 static const char *slow(struct match *, const char *, const char *, sopno,
97 sopno);
98 static states step(struct re_guts *, sopno, sopno, states, int, states);
113 static void at(struct match *, char *, char *, char *, sopno, sopno);
[all …]
Dregcomp.c65 sopno ssize; /* malloced strip size (allocated) */
66 sopno slen; /* malloced strip length (used) */
70 sopno pbegin[NPAREN]; /* -> ( ([0] unused) */
71 sopno pend[NPAREN]; /* -> ) ([0] unused) */
90 static void repeat(struct parse *, sopno, int, int);
103 static sopno dupl(struct parse *, sopno, sopno);
105 static void doinsert(struct parse *, sop, size_t, sopno);
106 static void dofwd(struct parse *, sopno, sop);
107 static void enlarge(struct parse *, sopno);
110 static sopno pluscount(struct parse *, struct re_guts *);
[all …]
Dregex2.h63 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? */
/mirbsd/src/lib/libc/regex/test/
Ddebug.c116 register sopno offset = 2; in s_print()