Home
last modified time | relevance | path

Searched refs:nplus (Results 1 – 11 of 11) sorted by relevance

/freebsd/lib/libc/regex/grot/
H A Ddebug.c45 if (g->nplus > 0)
46 fprintf(d, ", nplus %ld", (long)g->nplus);
/freebsd/contrib/netbsd-tests/lib/libc/regex/
H A Ddebug.c77 if (g->nplus > 0) in regprint()
78 fprintf(d, ", nplus %ld", (long)g->nplus); in regprint()
/freebsd/contrib/nvi/regex/
H A Dregex2.h161 sopno nplus; /* how deep does it nest +s? */ member
H A Dengine.c220 if (g->nplus > 0 && m->lastpos == NULL) in matcher()
221 m->lastpos = (const RCHAR_T **)malloc((g->nplus+1) * in matcher()
223 if (g->nplus > 0 && m->lastpos == NULL) { in matcher()
236 assert(g->nplus == 0 || m->lastpos != NULL); in matcher()
607 assert(lev+1 <= m->g->nplus); in backref()
H A Dregcomp.c267 g->nplus = pluscount(p, g); in regcomp()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregex2.h156 sopno nplus; /* how deep does it nest +s? */ member
H A Dregengine.inc81 const char **lastpos; /* [nplus+1] */
225 if (g->nplus > 0 && m->lastpos == NULL)
226 m->lastpos = (const char **)malloc((g->nplus+1) *
228 if (g->nplus > 0 && m->lastpos == NULL) {
241 assert(g->nplus == 0 || m->lastpos != NULL);
652 assert(lev+1 <= m->g->nplus);
H A Dregcomp.c372 g->nplus = pluscount(p, g); in llvm_regcomp()
/freebsd/lib/libc/regex/
H A Dregex2.h195 sopno nplus; /* how deep does it nest +s? */ member
H A Dengine.c335 if (g->nplus > 0 && m->lastpos == NULL) in matcher()
336 m->lastpos = malloc((g->nplus+1) * in matcher()
338 if (g->nplus > 0 && m->lastpos == NULL) { in matcher()
351 assert(g->nplus == 0 || m->lastpos != NULL); in matcher()
770 assert(lev+1 <= m->g->nplus); in backref()
H A Dregcomp.c328 g->nplus = pluscount(p, g); in regcomp_internal()