/netbsd-src/external/gpl3/gdb/dist/gnulib/import/ |
H A D | malloca.c | 52 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 D | allocsa.c | 75 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 D | allocsa.c | 70 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 D | allocsa.c | 70 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 D | allocsa.c | 70 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 D | consinit.c | 103 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 D | consinit.c | 114 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 D | debug.c | 78 if (g->nplus > 0) in regprint() 79 fprintf(d, ", nplus %u", g->nplus); in regprint()
|
/netbsd-src/external/bsd/nvi/dist/regex/ |
H A D | regex2.h | 164 sopno nplus; /* how deep does it nest +s? */ member
|
H A D | regcomp.c | 284 g->nplus = pluscount(p, g); in regcomp()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | regex2.h | 156 sopno nplus; /* how deep does it nest +s? */ member
|
H A D | regengine.inc | 79 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 D | regcomp.c | 372 g->nplus = pluscount(p, g); in llvm_regcomp()
|
/netbsd-src/lib/libc/regex/ |
H A D | engine.c | 351 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 D | regex2.h | 198 sopno nplus; /* how deep does it nest +s? */ 200 sopno nplus; /* how deep does it nest +s? */ global() member
|
H A D | regcomp.c | 397 g->nplus = pluscount(p, g); in regcomp_internal()
|