Home
last modified time | relevance | path

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

/netbsd-src/external/gpl3/gdb/dist/gnulib/import/
H A Dmalloca.c52 idx_t nplus; in mmalloca() local
53 if (!INT_ADD_WRAPV (n, plus, &nplus) && !xalloc_oversized (nplus, 1)) in mmalloca()
55 char *mem = (char *) malloc (nplus); in mmalloca()
/netbsd-src/external/gpl2/xcvs/dist/lib/
H A 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/external/gpl2/gettext/dist/gettext-runtime/gnulib-lib/
H A Dallocsa.c70 size_t nplus = n + HEADER_SIZE; in mallocsa() local
72 if (nplus >= n) in mallocsa()
74 char *p = (char *) malloc (nplus); in mallocsa()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
H A Dallocsa.c70 size_t nplus = n + HEADER_SIZE; in mallocsa() local
72 if (nplus >= n) in mallocsa()
74 char *p = (char *) malloc (nplus); in mallocsa()
/netbsd-src/external/gpl2/gettext/dist/gettext-tools/libgettextpo/
H A Dallocsa.c70 size_t nplus = n + HEADER_SIZE; in mallocsa() local
72 if (nplus >= n) in mallocsa()
74 char *p = (char *) malloc (nplus); in mallocsa()
/netbsd-src/sys/arch/sparc64/dev/
H A 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/
H A 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/
H A Ddebug.c78 if (g->nplus > 0) in regprint()
79 fprintf(d, ", nplus %u", g->nplus); in regprint()
/netbsd-src/external/bsd/nvi/dist/regex/
H A Dregex2.h164 sopno nplus; /* how deep does it nest +s? */ member
H A Dregcomp.c284 g->nplus = pluscount(p, g); in regcomp()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A Dregex2.h156 sopno nplus; /* how deep does it nest +s? */ member
H A Dregengine.inc79 const char **lastpos; /* [nplus+1] */
222 if (g->nplus > 0 && m->lastpos == NULL)
223 m->lastpos = (const char **)malloc((g->nplus+1) *
225 if (g->nplus > 0 && m->lastpos == NULL) {
238 assert(g->nplus == 0 || m->lastpos != NULL);
610 assert(lev+1 <= m->g->nplus);
H A Dregcomp.c372 g->nplus = pluscount(p, g); in llvm_regcomp()
/netbsd-src/lib/libc/regex/
H A 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()
H A Dregex2.h198 sopno nplus; /* how deep does it nest +s? */
200 sopno nplus; /* how deep does it nest +s? */ global() member
H A Dregcomp.c397 g->nplus = pluscount(p, g); in regcomp_internal()