Home
last modified time | relevance | path

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

/dragonfly/contrib/diffutils/lib/
H A Dmalloca.c48 size_t nplus = n + sizeof (small_t) + 2 * sa_alignment_max - 1; in mmalloca() local
50 if (nplus >= n) in mmalloca()
52 char *mem = (char *) malloc (nplus); in mmalloca()
/dragonfly/contrib/grep/lib/
H A Dmalloca.c48 size_t nplus = n + sizeof (small_t) + 2 * sa_alignment_max - 1; in mmalloca() local
50 if (nplus >= n) in mmalloca()
52 char *mem = (char *) malloc (nplus); in mmalloca()
/dragonfly/contrib/cvs-1.12/lib/
H A Dallocsa.c72 size_t nplus = n + HEADER_SIZE; in mallocsa() local
74 if (nplus >= n) in mallocsa()
76 char *p = (char *) malloc (nplus); in mallocsa()
/dragonfly/contrib/nvi2/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()