Searched refs:buf_alloc (Results 1 - 6 of 6) sorted by relevance

/netbsd-6-1-5-RELEASE/gnu/dist/grep/lib/
H A Dexclude.c93 size_t buf_alloc = 1024; local
103 buf = xmalloc (buf_alloc);
108 if (buf_count == buf_alloc)
109 buf = xrealloc (buf, buf_alloc *= 2);
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/
H A Dexclude.c228 size_t buf_alloc = (1 << 10); /* This must be a power of two. */ local
238 buf = xmalloc (buf_alloc);
243 if (buf_count == buf_alloc)
245 buf_alloc *= 2;
246 if (! buf_alloc)
248 buf = xrealloc (buf, buf_alloc);
/netbsd-6-1-5-RELEASE/usr.sbin/rpcbind/
H A Drpcb_svc_com.c601 char *buf_alloc = NULL, *outbufp; local
636 buf_alloc = alloca(sendsz); /* not in IDR2? */
638 buf_alloc = malloc(sendsz);
640 if (buf_alloc == NULL) {
648 a.rmt_args.args = buf_alloc;
910 if (buf_alloc)
911 free((void *) buf_alloc);
/netbsd-6-1-5-RELEASE/tests/fs/nfs/nfsservice/rpcbind/
H A Drpcb_svc_com.c597 char *buf_alloc = NULL, *outbufp; local
632 buf_alloc = alloca(sendsz); /* not in IDR2? */
634 buf_alloc = malloc(sendsz);
636 if (buf_alloc == NULL) {
644 a.rmt_args.args = buf_alloc;
906 if (buf_alloc)
907 free((void *) buf_alloc);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/
H A Dtarget.c2188 size_t buf_alloc, buf_pos; local
2201 buf_alloc = 4096;
2202 buf = xmalloc (buf_alloc);
2207 buf_pos, buf_alloc - buf_pos - padding);
2227 if (buf_alloc < buf_pos * 2)
2229 buf_alloc *= 2;
2230 buf = xrealloc (buf, buf_alloc);
/netbsd-6-1-5-RELEASE/sys/kern/
H A Dvfs_bio.c181 static void *buf_alloc(size_t);
616 buf_alloc(size_t size) function
1248 addr = buf_alloc(desired_size);

Completed in 198 milliseconds