HomeSort by: relevance | last modified time | path
    Searched refs:BUFSIZE (Results 1 - 25 of 103) sorted by relevancy

1 2 3 4 5

  /src/usr.bin/sort/
fsort.h 66 #define BUFSIZE (1<<20)
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
stale-infcall.c 22 #define BUFSIZE 0x1000
35 char buf[BUFSIZE / 2];
41 static char buf_zero[BUFSIZE];
46 char buf[BUFSIZE];
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/
stale-infcall.c 22 #define BUFSIZE 0x1000
35 char buf[BUFSIZE / 2];
41 static char buf_zero[BUFSIZE];
46 char buf[BUFSIZE];
  /src/sys/arch/i386/stand/lib/
pread.c 36 #define BUFSIZE (1*1024)
38 #define BUFSIZE (4*1024)
49 buf = alloc(BUFSIZE);
56 count = (rsize < BUFSIZE ? rsize : BUFSIZE);
  /src/tests/lib/libc/gen/posix_spawn/
h_fileactions.c 42 #define BUFSIZE 16
54 char buf[BUFSIZE];
59 if (read(3, buf, BUFSIZE) != -1 || errno != EBADF) {
65 if (read(4, buf, BUFSIZE) != -1 || errno != EBADF) {
71 if (write(5, buf, BUFSIZE) <= 0) {
77 if (write(6, buf, BUFSIZE) <= 0) {
  /src/tests/lib/libc/stdio/
t_popen.c 55 #define BUFSIZE (640*1024)
79 if ((buffer = malloc(BUFSIZE)) == NULL)
84 for (idx = 0; idx < BUFSIZE; idx++)
93 if (fwrite(buffer, sizeof(char), BUFSIZE, my_pipe) != BUFSIZE)
106 if (idx == BUFSIZE) {
115 if (idx < BUFSIZE) {
  /src/tests/kernel/arch/vax/
h_execregs.S 38 #define BUFSIZE (NEXECREGS * REGSIZE)
43 subl2 $BUFSIZE,%sp /* space for NEXECREGS registers */
61 pushl $BUFSIZE /* arg2 := sizeof(regs) */
69 cmpl $BUFSIZE,%r0 /* bail if wrote wrong # of bytes */
  /src/usr.sbin/eeprom/
defs.h 40 #undef BUFSIZE
41 #define BUFSIZE 1024
ofhandlers.c 49 static char err_str[BUFSIZE];
96 char ofio_buf[BUFSIZE];
214 char buf1[BUFSIZE], buf2[BUFSIZE], buf3[BUFSIZE], buf4[BUFSIZE];
ophandlers.c 50 static char err_str[BUFSIZE];
102 char opio_buf[BUFSIZE];
206 char buf1[BUFSIZE], buf2[BUFSIZE], buf3[BUFSIZE], buf4[BUFSIZE];
prephandlers.c 50 static char err_str[BUFSIZE];
92 char nvio_buf[BUFSIZE];
186 char buf1[BUFSIZE], buf2[BUFSIZE], buf3[BUFSIZE], buf4[BUFSIZE];
main.c 88 char *cp, line[BUFSIZE];
141 while (fgets(line, BUFSIZE, stdin) != NULL) {
  /src/sys/dev/virtio/
viocon.c 94 #define BUFSIZE 128
262 if (virtio_alloc_vq(vsc, &sc->sc_vqs[rxidx], BUFSIZE, 1,
274 if (virtio_alloc_vq(vsc, &sc->sc_vqs[txidx], BUFSIZE, 1,
282 allocsize = (vp->vp_rx->vq_num + vp->vp_tx->vq_num) * BUFSIZE;
299 * XXX use only a small circular tx buffer instead of many BUFSIZE buffers?
301 vp->vp_tx_buf = vp->vp_rx_buf + vp->vp_rx->vq_num * BUFSIZE;
336 vp->vp_tx_buf - vp->vp_rx_buf + slot * BUFSIZE, BUFSIZE,
374 bus_dmamap_sync(virtio_dmat(vsc), vp->vp_dmamap, slot * BUFSIZE,
375 BUFSIZE, BUS_DMASYNC_PREREAD)
    [all...]
  /src/crypto/external/apache2/openssl/dist/apps/
mac.c 20 #undef BUFSIZE
21 #define BUFSIZE 1024 * 8
98 buf = app_malloc(BUFSIZE, "I/O buffer");
190 i = BIO_read(in, (char *)buf, BUFSIZE);
208 if (len > BUFSIZE) {
213 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) {
231 OPENSSL_clear_free(buf, BUFSIZE);
  /src/crypto/external/bsd/openssl/dist/apps/
mac.c 20 #undef BUFSIZE
21 #define BUFSIZE 1024*8
94 buf = app_malloc(BUFSIZE, "I/O buffer");
187 i = BIO_read(in, (char *)buf, BUFSIZE);
205 if (len > BUFSIZE) {
210 if (!EVP_MAC_final(ctx, buf, &len, BUFSIZE)) {
228 OPENSSL_clear_free(buf, BUFSIZE);
  /src/tests/lib/libc/sys/
t_mmap.c 85 #define BUFSIZE (32 * 1024) /* enough size to trigger sosend_loan */
103 char buf[BUFSIZE];
104 char backup[BUFSIZE];
110 val = BUFSIZE;
113 (void)memcpy(backup, vp, BUFSIZE);
118 val = BUFSIZE;
123 val = BUFSIZE;
131 nwritten = write(fds[0], (char *)vp + page, BUFSIZE - page);
137 (void)memset(vp2, pat, BUFSIZE);
139 nread = read(fds[1], buf + page, BUFSIZE - page)
    [all...]
t_recvmmsg.c 56 #define BUFSIZE 65536
92 buf = malloc(BUFSIZE);
95 mmsgcnt = BUFSIZE / sizeof(DGRAM);
t_sendmmsg.c 50 #define BUFSIZE 65536
72 int buflen = BUFSIZE;
97 buf = malloc(BUFSIZE);
103 mmsgcnt = BUFSIZE / sizeof(DGRAM);
  /src/sys/dev/ppbus/
lptvar.h 43 #define BUFSIZE PAGE_SIZE
  /src/sys/rump/fs/lib/libsyspuffs/
puffs_rumpglue.c 58 #define BUFSIZE (64*1024)
77 buf = kmem_alloc(BUFSIZE, KM_SLEEP);
91 error = dofileread(pap->fpfd, fp, buf, BUFSIZE,
134 buf = kmem_alloc(BUFSIZE, KM_SLEEP);
  /src/bin/csh/
lex.c 115 static Char labuf[BUFSIZE];
259 Char wbuf[BUFSIZE], *wp;
264 i = BUFSIZE - 4;
641 Char buf[BUFSIZE];
922 Char wbuf[BUFSIZE];
941 i = BUFSIZE - 4;
1418 char tbuf[BUFSIZE + 1];
1419 Char ttyline[BUFSIZE];
1425 char tbuf[BUFSIZE + 1];
1439 c = read(SHIN, tbuf, BUFSIZE);
    [all...]
  /src/sys/dev/pci/
atppc_puc.c 158 #define BUFSIZE PAGE_SIZE /* XXX see lptvar.h */
159 if ((error = bus_dmamap_create(sc->sc_dmat, BUFSIZE, 1, BUFSIZE, 0,
  /src/crypto/external/apache2/openssl/dist/providers/implementations/kem/
template_kem.c 25 #define BUFSIZE 1000
34 char out[BUFSIZE];
38 vsnprintf(out, BUFSIZE, fmt, argptr);
  /src/sys/arch/mac68k/obio/
ascaudio.c 66 #define BUFSIZE 32768
207 sc->sc_playbuf = kmem_alloc(BUFSIZE, KM_SLEEP);
208 sc->sc_recbuf = kmem_alloc(BUFSIZE, KM_SLEEP);
449 if (sc->sc_putptr + blksize >= sc->sc_playbuf + BUFSIZE)
450 total = sc->sc_playbuf + BUFSIZE - sc->sc_putptr;
466 if (sc->sc_avail > BUFSIZE)
467 sc->sc_avail = BUFSIZE;
556 if (sc->sc_getptr + blksize >= sc->sc_recbuf + BUFSIZE)
557 total = sc->sc_recbuf + BUFSIZE - sc->sc_getptr;
826 if (sc->sc_rptr + count >= sc->sc_recbuf + BUFSIZE)
    [all...]
  /src/usr.sbin/mopd/common/
common.h 35 #define BUFSIZE 1600 /* main receive buffer size */

Completed in 47 milliseconds

1 2 3 4 5