Symbol: BUFLEN
common/dist/zlib/test/minigzip.c
242
unsigned char out[BUFLEN];
common/dist/zlib/test/minigzip.c
251
strm->avail_out = BUFLEN;
common/dist/zlib/test/minigzip.c
253
fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
common/dist/zlib/test/minigzip.c
291
unsigned char out[BUFLEN];
common/dist/zlib/test/minigzip.c
301
strm->avail_out = BUFLEN;
common/dist/zlib/test/minigzip.c
303
fwrite(out, 1, BUFLEN - strm->avail_out, gz->file);
common/dist/zlib/test/minigzip.c
370
local char buf[BUFLEN];
common/dist/zlib/test/minigzip.c
398
local char buf[BUFLEN];
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4218
static char buf[BUFLEN];
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4261
len = snprintf( buf, BUFLEN, "%s", saddrwop2str(&saddr.sa));
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4317
len = snprintf( buf, BUFLEN, "%s/%i", saddrwop2str(&saddr.sa), plen);
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4323
len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(&saddr.sa));
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4334
len += snprintf(buf + len, BUFLEN - len, "%s", saddrwop2str(&saddr.sa));
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4339
len = snprintf( buf, BUFLEN, "%s-", saddrwop2str(&saddr.sa));
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4354
len += snprintf(buf + len, BUFLEN - len, "%s", saddrwop2str(&saddr.sa));
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4361
if (len > BUFLEN)
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4362
len = BUFLEN;
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4378
if (len > BUFLEN)
crypto/dist/ipsec-tools/src/racoon/ipsec_doi.c
4379
len = BUFLEN;
distrib/utils/zcat/zcat.c
56
char buf[BUFLEN];
lib/libwrap/hosts_access.c
173
char sv_list[BUFLEN]; /* becomes list of daemons */
sys/arch/atari/stand/ahdilabel/ahdilabel.c
370
char buf[BUFLEN], cts[CTSLEN];
sys/arch/atari/stand/ahdilabel/ahdilabel.c
384
if (get_input (&buf[0], BUFLEN) > 2) {
sys/arch/atari/stand/ahdilabel/ahdilabel.c
392
if (get_input (&buf[0], BUFLEN)) {
sys/arch/atari/stand/ahdilabel/ahdilabel.c
399
if (get_input (&buf[0], BUFLEN)) {
sys/arch/atari/stand/ahdilabel/ahdilabel.c
407
if (get_input (&buf[0], BUFLEN)) {
tests/lib/libc/locale/t_ducet.c
106
memset(xfb1, 0, BUFLEN);
tests/lib/libc/locale/t_ducet.c
107
memset(xfb2, 0, BUFLEN);
tests/lib/libc/locale/t_ducet.c
124
wcsxfrm(xf, line, BUFLEN);
tests/lib/libc/locale/t_ducet.c
99
wchar_t xfb1[BUFLEN], xfb2[BUFLEN]; /* Gross overestimates */
usr.bin/gzip/gzip.c
1001
wr = BUFLEN - z.avail_out;
usr.bin/gzip/gzip.c
1025
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
1803
char buf[BUFLEN];
usr.bin/gzip/gzip.c
606
outbufp = malloc(BUFLEN);
usr.bin/gzip/gzip.c
607
inbufp = malloc(BUFLEN);
usr.bin/gzip/gzip.c
627
i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c%c%c%s",
usr.bin/gzip/gzip.c
636
if (i >= BUFLEN)
usr.bin/gzip/gzip.c
644
z.avail_out = BUFLEN - i;
usr.bin/gzip/gzip.c
658
if (write_retry(out, outbufp, BUFLEN) != BUFLEN) {
usr.bin/gzip/gzip.c
664
out_tot += BUFLEN;
usr.bin/gzip/gzip.c
666
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
670
in_size = read(in, inbufp, BUFLEN);
usr.bin/gzip/gzip.c
716
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
728
i = snprintf(outbufp, BUFLEN, "%c%c%c%c%c%c%c%c",
usr.bin/gzip/gzip.c
798
if ((outbufp = malloc(BUFLEN)) == NULL) {
usr.bin/gzip/gzip.c
802
if ((inbufp = malloc(BUFLEN)) == NULL) {
usr.bin/gzip/gzip.c
810
z.avail_out = BUFLEN;
usr.bin/gzip/gzip.c
829
BUFLEN - z.avail_in);
usr.bin/gzip/unbzip2.c
101
if (!tflag && bzs.avail_out != BUFLEN) {
usr.bin/gzip/unbzip2.c
104
n = write(out, outbuf, BUFLEN - bzs.avail_out);
usr.bin/gzip/unbzip2.c
43
inbuf = malloc(BUFLEN);
usr.bin/gzip/unbzip2.c
45
outbuf = malloc(BUFLEN);
usr.bin/gzip/unbzip2.c
70
n = read(in, inbuf, BUFLEN);
usr.bin/gzip/unbzip2.c
83
bzs.avail_out = BUFLEN;
usr.bin/gzip/unzstd.c
43
ibuf = malloc(BUFLEN);
usr.bin/gzip/unzstd.c
45
obuf = malloc(BUFLEN);
usr.bin/gzip/unzstd.c
58
zob.size = BUFLEN;
usr.bin/gzip/unzstd.c
63
res = read(in, ibuf, BUFLEN);
usr.sbin/bootp/bootptest/bootptest.c
166
sndbuf = malloc(BUFLEN);
usr.sbin/bootp/bootptest/bootptest.c
167
rcvbuf = malloc(BUFLEN);
usr.sbin/bootp/bootptest/bootptest.c
356
n = BUFLEN - sizeof(*bp) + BP_VEND_LEN;
usr.sbin/bootp/bootptest/bootptest.c
405
n = recvfrom(s, rcvbuf, BUFLEN, 0,
usr.sbin/makemandb/makemandb.c
1930
rec->desc.buflen = 10 * BUFLEN;
usr.sbin/makemandb/makemandb.c
1934
rec->lib.buflen = BUFLEN / 2;
usr.sbin/makemandb/makemandb.c
1938
rec->return_vals.buflen = BUFLEN;
usr.sbin/makemandb/makemandb.c
1942
rec->exit_status.buflen = BUFLEN;
usr.sbin/makemandb/makemandb.c
1946
rec->env.buflen = BUFLEN;
usr.sbin/makemandb/makemandb.c
1950
rec->files.buflen = BUFLEN;
usr.sbin/makemandb/makemandb.c
1954
rec->diagnostics.buflen = BUFLEN;
usr.sbin/makemandb/makemandb.c
1958
rec->errors.buflen = BUFLEN;
usr.sbin/tcpdchk/tcpdchk.c
213
char sv_list[BUFLEN]; /* becomes list of daemons */
usr.sbin/tcpdchk/tcpdchk.c
284
char buf[BUFLEN];
usr.sbin/tcpdchk/tcpdchk.c
304
char buf[BUFLEN];
usr.sbin/tcpdchk/tcpdchk.c
331
char buf[BUFLEN];