Home
last modified time | relevance | path

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

/netbsd-src/external/gpl2/rcs/dist/src/
H A Drcsfnms.c420 bufalloc(b, size) in bufalloc() function
446 bufalloc(b, size);
516 bufalloc(b, strlen(s)+1);
644 bufalloc(&RCSb, dlen + rcslen + 1 + baselen + xlen + 1);
815 bufalloc(&rcsbuf, SIZEABLE_PATH + 1); in getfullRCSname()
818 bufalloc(&rcsbuf, rcsbuf.size<<1); in getfullRCSname()
842 bufalloc(&wdbuf, SIZEABLE_PATH + 1); in getfullRCSname()
846 bufalloc(&wdbuf, wdbuf.size<<1); in getfullRCSname()
872 bufalloc(&rcsbuf, dlen + strlen(r) + 2); in getfullRCSname()
H A Drcskeep.c310 bufalloc(target, 1);
368 bufalloc(&prevdate, strlen(d) + strlen(t) + 9);
H A Drcsedit.c880 bufalloc(&keyval, keylength+3);
1160 bufalloc(&leader, cs);
1263 bufalloc(&bigbuf, s<<1);
1518 bufalloc(bn,
H A Drcsdiff.c472 bufalloc(b,
H A Dci.c1102 bufalloc(nnum, l+2);
1277 bufalloc(&logbuf, i + datesize + zonelenmax); in getlogmsg()
H A Drcsgen.c398 bufalloc(&desc, 1);
H A Drcsrev.c701 bufalloc(target, 1);
H A Drcsbase.h514 void bufalloc P((struct buf*,size_t));
/netbsd-src/lib/libc/time/
H A Dzdump.c407 saveabbr(char **buf, ptrdiff_t *bufalloc, struct tm const *tmp)
414 if (*bufalloc < absize) {
419 *bufalloc = sumsize(*bufalloc, absize);
420 *buf = xmalloc(*bufalloc);
1142 char *bufalloc = NULL;
1145 free(bufalloc);
1146 buf = bufalloc = xmalloc(size);
1149 free(bufalloc);
422 saveabbr(char ** buf,ptrdiff_t * bufalloc,struct tm const * tmp) global() argument
1152 char *bufalloc = NULL; global() local
/netbsd-src/external/gpl2/grep/dist/src/
H A Dgrep.c224 static size_t bufalloc; /* Allocated buffer size, counting slop. */ variable
259 bufalloc = ALIGN_TO (INITIAL_BUFSIZE, pagesize) + pagesize + 1; in reset()
260 buffer = xmalloc (bufalloc); in reset()
327 if (pagesize <= buffer + bufalloc - buflim) in fillbuf()
340 for (newsize = bufalloc - pagesize - 1; newsize < minsize; newsize *= 2) in fillbuf()
364 newbuf = bufalloc < newalloc ? xmalloc (bufalloc = newalloc) : buffer; in fillbuf()
376 readsize = buffer + bufalloc - readbuf; in fillbuf()
/netbsd-src/external/gpl2/grep/dist/
H A DChangeLog1300 be bufalloc / PREFERRED_SAVE_FACTOR. This avoids problems when
1301 bufsalloc == bufalloc (possible after reading a large binary file).