Home
last modified time | relevance | path

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

/netbsd/src/external/gpl2/xcvs/dist/lib/
Dallocsa.c75 size_t nplus = n + HEADER_SIZE; in mallocsa() local
77 if (nplus >= n) in mallocsa()
79 char *p = (char *) malloc (nplus); in mallocsa()
/netbsd/src/sys/arch/sparc64/dev/
Dconsinit.c103 static int nplus = 0; in prom_cngetc() local
110 if (nplus++ > 3) Debugger(); in prom_cngetc()
111 } else nplus = 0; in prom_cngetc()
/netbsd/src/sys/arch/sun2/dev/
Dconsinit.c114 static int nplus = 0; in prom_cngetc() local
120 if (nplus++ > 3) Debugger(); in prom_cngetc()
121 } else nplus = 0; in prom_cngetc()
/netbsd/src/tests/lib/libc/regex/
Ddebug.c78 if (g->nplus > 0) in regprint()
79 fprintf(d, ", nplus %u", g->nplus); in regprint()
/netbsd/src/external/bsd/nvi/dist/regex/
Dregex2.h164 sopno nplus; /* how deep does it nest +s? */ member
Dengine.c234 if (g->nplus > 0 && m->lastpos == NULL)
235 m->lastpos = (RCHAR_T **)malloc((g->nplus+1) *
237 if (g->nplus > 0 && m->lastpos == NULL) {
250 assert(g->nplus == 0 || m->lastpos != NULL);
635 assert(lev+1 <= m->g->nplus);
Dregcomp.c284 g->nplus = pluscount(p, g); in regcomp()
/netbsd/src/lib/libc/regex/
Dengine.c351 if (g->nplus > 0 && m->lastpos == NULL) in matcher()
352 m->lastpos = malloc((g->nplus+1) * in matcher()
354 if (g->nplus > 0 && m->lastpos == NULL) { in matcher()
366 assert(g->nplus == 0 || m->lastpos != NULL); in matcher()
806 assert(lev+1 <= m->g->nplus); in backref()
Dregex2.h198 sopno nplus; /* how deep does it nest +s? */ member
Dregcomp.c397 g->nplus = pluscount(p, g); in regcomp_internal()