Searched refs:bufalloc (Results 1 – 11 of 11) sorted by relevance
/netbsd-src/external/gpl2/rcs/dist/src/ |
H A D | rcsfnms.c | 420 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 D | rcskeep.c | 310 bufalloc(target, 1); 368 bufalloc(&prevdate, strlen(d) + strlen(t) + 9);
|
H A D | rcsedit.c | 880 bufalloc(&keyval, keylength+3); 1160 bufalloc(&leader, cs); 1263 bufalloc(&bigbuf, s<<1); 1518 bufalloc(bn,
|
H A D | rcsdiff.c | 472 bufalloc(b,
|
H A D | ci.c | 1102 bufalloc(nnum, l+2); 1277 bufalloc(&logbuf, i + datesize + zonelenmax); in getlogmsg()
|
H A D | rcsgen.c | 398 bufalloc(&desc, 1);
|
H A D | rcsrev.c | 701 bufalloc(target, 1);
|
H A D | rcsbase.h | 514 void bufalloc P((struct buf*,size_t));
|
/netbsd-src/lib/libc/time/ |
H A D | zdump.c | 407 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 D | grep.c | 224 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 D | ChangeLog | 1300 be bufalloc / PREFERRED_SAVE_FACTOR. This avoids problems when 1301 bufsalloc == bufalloc (possible after reading a large binary file).
|