Searched refs:BUFLEN (Results 1 - 8 of 8) sorted by relevance

/freebsd-9.3-release/usr.bin/gzip/
H A Dunbzip2.c45 inbuf = malloc(BUFLEN);
47 outbuf = malloc(BUFLEN);
71 n = read(in, inbuf, BUFLEN);
83 bzs.avail_out = BUFLEN;
101 if (!tflag && bzs.avail_out != BUFLEN) {
104 n = write(out, outbuf, BUFLEN - bzs.avail_out);
H A Dgzip.c102 #define BUFLEN (64 * 1024) macro
557 outbufp = malloc(BUFLEN);
558 inbufp = malloc(BUFLEN);
578 i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c%c%c%s",
587 if (i >= BUFLEN)
588 /* this need PATH_MAX > BUFLEN ... */
595 z.avail_out = BUFLEN - i;
608 if (write(out, outbufp, BUFLEN) != BUFLEN) {
614 out_tot += BUFLEN;
[all...]
/freebsd-9.3-release/bin/sh/
H A Dmknodes.c60 #define BUFLEN 100 /* size of character buffers */ macro
133 char name[BUFLEN];
134 char tag[BUFLEN];
163 char name[BUFLEN];
164 char type[BUFLEN];
165 char decl[2 * BUFLEN];
416 if (p - line > BUFLEN)
/freebsd-9.3-release/contrib/tcp_wrappers/
H A Dtcpdchk.c63 #define BUFLEN 2048 macro
204 char sv_list[BUFLEN]; /* becomes list of daemons */
278 char buf[BUFLEN];
299 char buf[BUFLEN];
327 char buf[BUFLEN];
H A Dhosts_access.c103 #define BUFLEN 2048 macro
146 char sv_list[BUFLEN]; /* becomes list of daemons */
/freebsd-9.3-release/libexec/bootpd/tools/bootptest/
H A Dbootptest.c77 #define BUFLEN 1024 macro
173 sndbuf = malloc(BUFLEN);
174 rcvbuf = malloc(BUFLEN);
363 n = BUFLEN - sizeof(*bp) + BP_VEND_LEN;
416 n = recvfrom(s, rcvbuf, BUFLEN, 0,
/freebsd-9.3-release/lib/libz/test/
H A Dminigzip.c135 #define BUFLEN 16384 macro
242 unsigned char out[BUFLEN];
251 strm->avail_out = BUFLEN;
253 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
301 unsigned char out[BUFLEN];
311 strm->avail_out = BUFLEN;
313 fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
366 local char buf[BUFLEN];
434 local char buf[BUFLEN];
/freebsd-9.3-release/tools/regression/sockets/unix_seqpacket_exercise/
H A Dunix_seqpacket_exercise.c47 #define BUFLEN 32768 macro
110 char buffer[BUFLEN];
257 truncsize = min(size, BUFLEN);
297 truncsize = min(size, BUFLEN);

Completed in 72 milliseconds