Symbol: BUFSIZE
crypto/krb5/src/include/k5-platform.h
802
# define k5_getpwnam_r(NAME, REC, BUF, BUFSIZE, OUT) \
crypto/krb5/src/include/k5-platform.h
803
(getpwnam_r(NAME,REC,BUF,BUFSIZE,OUT) == 0 \
crypto/krb5/src/include/k5-platform.h
808
# define k5_getpwnam_r(NAME, REC, BUF, BUFSIZE, OUT) \
crypto/krb5/src/include/k5-platform.h
809
(getpwnam_r(NAME,REC,BUF,BUFSIZE) == 0 \
crypto/krb5/src/include/k5-platform.h
813
# define k5_getpwnam_r(NAME, REC, BUF, BUFSIZE, OUT) \
crypto/krb5/src/include/k5-platform.h
814
(*(OUT) = getpwnam_r(NAME,REC,BUF,BUFSIZE), *(OUT) == NULL ? -1 : 0)
crypto/krb5/src/include/k5-platform.h
819
# define k5_getpwnam_r(NAME, REC, BUF, BUFSIZE, OUT) \
crypto/krb5/src/include/k5-platform.h
827
# define k5_getpwuid_r(UID, REC, BUF, BUFSIZE, OUT) \
crypto/krb5/src/include/k5-platform.h
828
(getpwuid_r(UID,REC,BUF,BUFSIZE,OUT) == 0 \
crypto/krb5/src/include/k5-platform.h
834
# define k5_getpwuid_r(UID, REC, BUF, BUFSIZE, OUT) \
crypto/krb5/src/include/k5-platform.h
835
(getpwuid_r(UID,REC,BUF,BUFSIZE) == 0 \
crypto/krb5/src/include/k5-platform.h
839
# define k5_getpwuid_r(UID, REC, BUF, BUFSIZE, OUT) \
crypto/krb5/src/include/k5-platform.h
840
(*(OUT) = getpwuid_r(UID,REC,BUF,BUFSIZE), *(OUT) == NULL ? -1 : 0)
crypto/krb5/src/include/k5-platform.h
845
# define k5_getpwuid_r(UID, REC, BUF, BUFSIZE, OUT) \
crypto/openssh/regress/netcat.c
787
unsigned char netinbuf[BUFSIZE];
crypto/openssh/regress/netcat.c
789
unsigned char stdinbuf[BUFSIZE];
crypto/openssh/regress/netcat.c
888
if (pfd[POLL_STDIN].revents & POLLIN && stdinbufpos < BUFSIZE) {
crypto/openssh/regress/netcat.c
898
if (stdinbufpos == BUFSIZE)
crypto/openssh/regress/netcat.c
911
if (stdinbufpos < BUFSIZE)
crypto/openssh/regress/netcat.c
915
if (pfd[POLL_NETIN].revents & POLLIN && netinbufpos < BUFSIZE) {
crypto/openssh/regress/netcat.c
929
if (netinbufpos == BUFSIZE)
crypto/openssh/regress/netcat.c
946
if (netinbufpos < BUFSIZE)
crypto/openssh/regress/netcat.c
987
size_t num = BUFSIZE - *bufpos;
crypto/openssl/apps/dgst.c
137
buf = app_malloc(BUFSIZE, "I/O buffer");
crypto/openssl/apps/dgst.c
506
OPENSSL_clear_free(buf, BUFSIZE);
crypto/openssl/apps/dgst.c
643
size_t len = BUFSIZE;
crypto/openssl/apps/dgst.c
648
i = BIO_read(bp, (char *)buf, BUFSIZE);
crypto/openssl/apps/dgst.c
674
if (tmplen > BUFSIZE) {
crypto/openssl/apps/dgst.c
687
if (len > BUFSIZE) {
crypto/openssl/apps/dgst.c
699
len = BIO_gets(bp, (char *)buf, BUFSIZE);
crypto/openssl/apps/fipsinstall.c
290
while ((i = BIO_read(in, (char *)tmp, BUFSIZE)) != 0) {
crypto/openssl/apps/fipsinstall.c
857
read_buffer = app_malloc(BUFSIZE, "I/O buffer");
crypto/openssl/apps/mac.c
190
i = BIO_read(in, (char *)buf, BUFSIZE);
crypto/openssl/apps/mac.c
208
if (len > BUFSIZE) {
crypto/openssl/apps/mac.c
213
if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) {
crypto/openssl/apps/mac.c
231
OPENSSL_clear_free(buf, BUFSIZE);
crypto/openssl/apps/mac.c
98
buf = app_malloc(BUFSIZE, "I/O buffer");
crypto/openssl/crypto/txt_db/txt_db.c
25
int size = BUFSIZE;
crypto/openssl/crypto/txt_db/txt_db.c
57
size += BUFSIZE;
crypto/openssl/providers/implementations/kem/template_kem.c
34
char out[BUFSIZE];
crypto/openssl/providers/implementations/kem/template_kem.c
38
vsnprintf(out, BUFSIZE, fmt, argptr);
crypto/openssl/providers/implementations/keymgmt/template_kmgmt.c
35
char out[BUFSIZE];
crypto/openssl/providers/implementations/keymgmt/template_kmgmt.c
39
vsnprintf(out, BUFSIZE, fmt, argptr);
lib/geom/eli/geom_eli.c
373
char *p, buf[BUFSIZE], argname[16];
lib/geom/eli/geom_eli.c
460
char tmpbuf[BUFSIZE];
lib/geom/eli/geom_eli.c
489
char passbuf[BUFSIZE];
lib/geom/eli/geom_eli.c
68
static char cached_passphrase[BUFSIZE] = "";
lib/libc/tests/gen/arc4random_test.c
54
char parentbuf[BUFSIZE];
lib/libc/tests/gen/arc4random_test.c
55
char childbuf[BUFSIZE];
lib/libc/tests/gen/arc4random_test.c
70
arc4random_buf(page->childbuf, BUFSIZE);
lib/libc/tests/gen/arc4random_test.c
75
arc4random_buf(page->parentbuf, BUFSIZE);
lib/libc/tests/gen/arc4random_test.c
78
ATF_CHECK_MSG(memcmp(page->parentbuf, page->childbuf, BUFSIZE) != 0,
lib/libc/tests/stdio/flushlbuf_test.c
103
static char buf[BUFSIZE];
lib/libc/tests/stdio/flushlbuf_test.c
115
ATF_REQUIRE(setvbuf(f, buf, _IOLBF, BUFSIZE) == 0);
lib/libc/tests/stdio/flushlbuf_test.c
116
while (i < BUFSIZE)
lib/libc/tests/stdio/flushlbuf_test.c
119
ATF_CHECK_EQ(BUFSIZE, i);
lib/libc/tests/stdio/flushlbuf_test.c
120
ATF_CHECK_EQ(seq[i - 1], buf[BUFSIZE - 1]);
lib/libc/tests/stdio/flushlbuf_test.c
20
char buf[BUFSIZE];
lib/libc/tests/stdio/flushlbuf_test.c
48
static char buf[BUFSIZE + 1];
lib/libc/tests/stdio/flushlbuf_test.c
58
s.len = BUFSIZE / 2; // write will fail after this amount
lib/libc/tests/stdio/flushlbuf_test.c
60
ATF_REQUIRE(setvbuf(f, buf, _IOLBF, BUFSIZE) == 0);
lib/libc/tests/stdio/flushlbuf_test.c
61
while (i < BUFSIZE)
lib/libc/tests/stdio/flushlbuf_test.c
64
ATF_CHECK_EQ(BUFSIZE, i);
lib/libc/tests/stdio/flushlbuf_test.c
65
ATF_CHECK_EQ(seq[i - 1], buf[BUFSIZE - 1]);
lib/libc/tests/stdio/flushlbuf_test.c
85
while (i < BUFSIZE + s.len)
lib/libc/tests/stdio/flushlbuf_test.c
87
ATF_CHECK_EQ(BUFSIZE + s.len, i);
lib/libc/tests/stdio/flushlbuf_test.c
88
ATF_CHECK_EQ(seq[i - 1], buf[BUFSIZE - 1]);
lib/libc/tests/stdio/flushlbuf_test.c
89
ATF_CHECK_EQ(0, buf[BUFSIZE]);
lib/libc/tests/stdio/flushlbuf_test.c
96
ATF_CHECK_EQ(0, buf[BUFSIZE]);
lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
103
char buf[BUFSIZE + 1];
lib/libiconv_modules/mapper_zone/citrus_mapper_zone.c
106
for (i = 0; i < BUFSIZE; i++) {
sbin/fsck_ffs/pass5.c
503
char buf[BUFSIZE];
sbin/fsck_ffs/pass5.c
576
snprintf(buf, BUFSIZE,
sbin/fsck_ffs/pass5.c
622
snprintf(buf, BUFSIZE, "FREE %s", name);
stand/i386/libi386/pread.c
48
static char buf[BUFSIZE];
stand/i386/libi386/pread.c
62
count = (rsize < BUFSIZE ? rsize : BUFSIZE);
sys/dev/ppbus/lpt.c
403
sc->sc_inbuf = malloc(BUFSIZE, M_DEVBUF, M_WAITOK);
sys/dev/ppbus/lpt.c
781
while ((n = min(BUFSIZE, uio->uio_resid)) != 0) {
sys/dev/ppbus/ppi.c
361
buffer = malloc(BUFSIZE, M_DEVBUF, M_WAITOK);
sys/dev/ppbus/ppi.c
403
buffer, min(BUFSIZE, uio->uio_resid), &len);
sys/dev/ppbus/ppi.c
463
buffer = malloc(BUFSIZE, M_DEVBUF, M_WAITOK);
sys/dev/ppbus/ppi.c
471
while (!error && (len = min(uio->uio_resid, BUFSIZE))) {
sys/dev/ppbus/ppi.c
481
buffer = malloc(BUFSIZE, M_DEVBUF, M_WAITOK);
sys/dev/ppbus/ppi.c
518
while ((len = min(uio->uio_resid, BUFSIZE)) != 0) {
sys/dev/ppbus/ppi.c
73
char ppi_buffer[BUFSIZE];
tests/sys/fs/fusefs/write.cc
277
const ssize_t BUFSIZE = 9;
tests/sys/fs/fusefs/write.cc
280
const char CONTENTS[BUFSIZE] = "abcdefgh";
tests/sys/fs/fusefs/write.cc
291
expect_write(ino, initial_offset, BUFSIZE, BUFSIZE, CONTENTS);
tests/sys/fs/fusefs/write.cc
297
ASSERT_EQ(BUFSIZE, write(fd, CONTENTS, BUFSIZE)) << strerror(errno);
tests/sys/fs/fusefs/write.cc
304
const ssize_t BUFSIZE = 9;
tests/sys/fs/fusefs/write.cc
308
const char CONTENTS[BUFSIZE] = "abcdefgh";
tests/sys/fs/fusefs/write.cc
322
maybe_expect_write(ino, oldsize, BUFSIZE, CONTENTS);
tests/sys/fs/fusefs/write.cc
333
ASSERT_EQ(BUFSIZE, write(fd, CONTENTS, BUFSIZE)) << strerror(errno);
tests/sys/fs/fusefs/write.cc
341
const ssize_t BUFSIZE = 9;
tests/sys/fs/fusefs/write.cc
344
const char CONTENTS[BUFSIZE] = "abcdefgh";
tests/sys/fs/fusefs/write.cc
351
expect_write(ino, initial_offset, BUFSIZE, BUFSIZE, CONTENTS);
tests/sys/fs/fusefs/write.cc
356
ASSERT_EQ(BUFSIZE, write(fd, CONTENTS, BUFSIZE)) << strerror(errno);
tests/sys/kern/unix_dgram.c
181
char buf[BUFSIZE], goodboy[BUFSIZE], flooder[BUFSIZE], notconn[BUFSIZE];
tests/sys/kern/unix_dgram.c
229
ATF_REQUIRE(sendto(two, notconn, BUFSIZE, 0, (struct sockaddr *)&sun,
tests/sys/kern/unix_dgram.c
230
sizeof(sun)) == BUFSIZE);
tests/sys/kern/unix_dgram.c
231
ATF_REQUIRE(send(many[1], goodboy, BUFSIZE, 0) == BUFSIZE);
tests/sys/kern/unix_dgram.c
239
ATF_REQUIRE(send(many[0], flooder, BUFSIZE, 0) == -1);
tests/sys/kern/unix_dgram.c
241
ATF_REQUIRE(send(many[1], goodboy, BUFSIZE, 0) == BUFSIZE);
tests/sys/kern/unix_dgram.c
250
ATF_REQUIRE(send(many[1], goodboy, BUFSIZE, 0) == BUFSIZE);
tests/sys/kern/unix_dgram.c
259
ATF_REQUIRE(sendto(two, notconn, BUFSIZE, 0, (struct sockaddr *)&sun,
tests/sys/kern/unix_dgram.c
260
sizeof(sun)) == BUFSIZE);
tests/sys/kern/unix_dgram.c
268
ATF_REQUIRE(send(many[1], goodboy, BUFSIZE, 0) == BUFSIZE);
usr.bin/gzip/zuncompress.c
138
buf = malloc(BUFSIZE);
usr.bin/gzip/zuncompress.c
149
while ((bin = fread(buf, 1, BUFSIZE, in)) != 0) {
usr.bin/m4/gnum4.c
666
char result[BUFSIZE];
usr.bin/m4/misc.c
58
static size_t bufsize = BUFSIZE;
usr.sbin/inetd/builtins.c
243
char buffer[BUFSIZE];
usr.sbin/inetd/builtins.c
254
char buffer[BUFSIZE];
usr.sbin/inetd/builtins.c
297
char buffer[BUFSIZE];
usr.sbin/inetd/builtins.c
357
char buf[BUFSIZE], *p, **av, *osname = NULL, e;