Symbol: BUFSIZE
crypto/libressl/apps/nc/netcat.c
1148
unsigned char netinbuf[BUFSIZE];
crypto/libressl/apps/nc/netcat.c
1150
unsigned char stdinbuf[BUFSIZE];
crypto/libressl/apps/nc/netcat.c
1241
if (pfd[POLL_STDIN].revents & POLLIN && stdinbufpos < BUFSIZE) {
crypto/libressl/apps/nc/netcat.c
1254
if (stdinbufpos == BUFSIZE)
crypto/libressl/apps/nc/netcat.c
1271
if (stdinbufpos < BUFSIZE)
crypto/libressl/apps/nc/netcat.c
1275
if (pfd[POLL_NETIN].revents & POLLIN && netinbufpos < BUFSIZE) {
crypto/libressl/apps/nc/netcat.c
1299
if (netinbufpos == BUFSIZE)
crypto/libressl/apps/nc/netcat.c
1320
if (netinbufpos < BUFSIZE)
crypto/libressl/apps/nc/netcat.c
1366
size_t num = BUFSIZE - *bufpos;
crypto/libressl/apps/openssl/dgst.c
348
if ((buf = malloc(BUFSIZE)) == NULL) {
crypto/libressl/apps/openssl/dgst.c
587
freezero(buf, BUFSIZE);
crypto/libressl/apps/openssl/dgst.c
610
i = BIO_read(bp, (char *) buf, BUFSIZE);
crypto/libressl/apps/openssl/dgst.c
638
len = BUFSIZE;
crypto/libressl/apps/openssl/dgst.c
645
len = BIO_gets(bp, (char *) buf, BUFSIZE);
crypto/libressl/apps/openssl/speed.c
1292
EVP_AEAD_CTX_seal(ctx, buf, &buf_len, BUFSIZE, nonce,
crypto/libressl/apps/openssl/speed.c
1320
EVP_AEAD_CTX_seal(ctx, buf, &buf_len, BUFSIZE, nonce,
crypto/libressl/apps/openssl/speed.c
1350
EVP_AEAD_CTX_seal(ctx, buf, &buf_len, BUFSIZE, nonce,
crypto/libressl/apps/openssl/speed.c
505
if ((buf = malloc(BUFSIZE)) == NULL) {
crypto/libressl/apps/openssl/speed.c
509
if ((buf2 = malloc(BUFSIZE)) == NULL) {
crypto/libressl/crypto/txt_db/txt_db.c
109
size += BUFSIZE;
crypto/libressl/crypto/txt_db/txt_db.c
77
int size = BUFSIZE;
games/sail/sync.c
145
static char sync_buf[BUFSIZE];
lib/i18n_module/mapper_zone/citrus_mapper_zone.c
102
char buf[BUFSIZE + 1];
lib/i18n_module/mapper_zone/citrus_mapper_zone.c
105
for (i = 0; i < BUFSIZE; i++) {
sbin/vinum/commands.c
124
configline = fgets(buffer, BUFSIZE, dfd);
sbin/vinum/commands.c
1584
char buffer[BUFSIZE];
sbin/vinum/commands.c
1685
char buffer[BUFSIZE];
sbin/vinum/commands.c
173
char buffer[BUFSIZE]; /* read config file in here */
sbin/vinum/commands.c
1833
char buffer[BUFSIZE];
sbin/vinum/commands.c
1981
char buffer[BUFSIZE];
sbin/vinum/commands.c
2135
char buffer[BUFSIZE];
sbin/vinum/commands.c
73
char buffer[BUFSIZE]; /* read config file in here */
sbin/vinum/commands.c
74
char commandline[BUFSIZE]; /* issue command from here */
sbin/vinum/v.c
68
char buffer[BUFSIZE]; /* buffer to read in to */
stand/boot/pc32/libi386/biosdisk.c
534
static char buf[BUFSIZE];
sys/bus/iicbus/iic.c
219
count = (int)szmin(uio->uio_resid, BUFSIZE);
sys/bus/iicbus/iic.c
261
len = (int)szmin(uio->uio_resid, BUFSIZE);
sys/bus/iicbus/iic.c
54
char sc_buffer[BUFSIZE]; /* output buffer */
sys/bus/iicbus/iic.c
55
char sc_inbuf[BUFSIZE]; /* input buffer */
sys/dev/misc/lpt/lpt.c
539
sc->sc_inbuf = kmalloc(BUFSIZE, M_LPT, M_WAITOK);
sys/dev/misc/lpt/lpt.c
761
while ((n = (unsigned)szmin(BUFSIZE, uio->uio_resid)) != 0) {
sys/dev/misc/ppi/ppi.c
370
(int)szmin(BUFSIZE, uio->uio_resid),
sys/dev/misc/ppi/ppi.c
435
while (!error && (len = (int)szmin(uio->uio_resid, BUFSIZE))) {
sys/dev/misc/ppi/ppi.c
477
while ((len = (int)szmin(uio->uio_resid, BUFSIZE)) != 0) {
sys/dev/misc/ppi/ppi.c
68
char ppi_buffer[BUFSIZE];
sys/dev/raid/vinum/vinumio.h
116
#define VINUM_CREATE _IOC(IOC_IN | IOC_OUT, L, 64, BUFSIZE)
usr.bin/gzip/zuncompress.c
137
buf = malloc(BUFSIZE);
usr.bin/gzip/zuncompress.c
148
while ((bin = fread(buf, 1, BUFSIZE, in)) != 0) {
usr.bin/m4/gnum4.c
634
char result[BUFSIZE];
usr.bin/m4/misc.c
57
static size_t bufsize = BUFSIZE;
usr.bin/shlock/shlock.c
104
char buf[BUFSIZE], tmpf[PATH_MAX];
usr.bin/shlock/shlock.c
192
char buf[BUFSIZE];
usr.bin/shlock/shlock.c
234
if (len == BUFSIZE) {
usr.bin/shlock/shlock.c
240
buf[BUFSIZE - 1] = '\0';
usr.sbin/inetd/builtins.c
236
char buffer[BUFSIZE];
usr.sbin/inetd/builtins.c
246
char buffer[BUFSIZE];
usr.sbin/inetd/builtins.c
287
char buffer[BUFSIZE];
usr.sbin/inetd/builtins.c
345
char buf[BUFSIZE], *p, **av, *osname = NULL, e;