HomeSort by: relevance | last modified time | path
    Searched refs:BUFFERSIZE (Results 1 - 9 of 9) sorted by relevancy

  /src/usr.bin/patch/
inp.c 433 lines_per_buf = BUFFERSIZE / maxlen;
435 tibuf[0] = malloc(BUFFERSIZE + 1);
438 tibuf[1] = malloc(BUFFERSIZE + 1);
444 if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE)
449 if (write(tifd, tibuf[0], BUFFERSIZE) < BUFFERSIZE)
491 BUFFERSIZE), SEEK_SET) < 0)
494 if (read(tifd, tibuf[whichbuf], BUFFERSIZE) < 0)
common.h 45 #define BUFFERSIZE 1024
  /src/usr.sbin/bootp/bootpef/
bootpef.c 73 #define BUFFERSIZE 0x4000
139 buffer = (byte *) malloc(BUFFERSIZE);
283 bytesleft = BUFFERSIZE;
  /src/crypto/external/apache2/openssl/dist/demos/sslecho/
main.c 135 #define BUFFERSIZE 1024
148 char buffer[BUFFERSIZE];
320 memset(buffer, 0, BUFFERSIZE);
321 txbuf = fgets(buffer, BUFFERSIZE, stdin);
  /src/sys/miscfs/procfs/
procfs_map.c 94 #define BUFFERSIZE (64 * 1024)
116 size_t bufsize = BUFFERSIZE;
  /src/crypto/external/bsd/openssl.old/dist/crypto/pkcs7/
pk7_smime.c 18 #define BUFFERSIZE 4096
325 if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL) {
330 i = BIO_read(p7bio, buf, BUFFERSIZE);
526 if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL) {
531 i = BIO_read(tmpmem, buf, BUFFERSIZE);
  /src/crypto/external/apache2/openssl/dist/crypto/pkcs7/
pk7_smime.c 19 #define BUFFERSIZE 4096
320 if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL)
323 i = BIO_read(p7bio, buf, BUFFERSIZE);
525 if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL)
528 i = BIO_read(tmpmem, buf, BUFFERSIZE);
  /src/crypto/external/bsd/openssl/dist/crypto/pkcs7/
pk7_smime.c 18 #define BUFFERSIZE 4096
335 if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL) {
340 i = BIO_read(p7bio, buf, BUFFERSIZE);
544 if ((buf = OPENSSL_malloc(BUFFERSIZE)) == NULL) {
549 i = BIO_read(tmpmem, buf, BUFFERSIZE);
  /src/external/bsd/top/dist/
top.c 102 #define BUFFERSIZE 4096
111 static char stdoutbuf[BUFFERSIZE];
786 setvbuf(stdout, stdoutbuf, _IOFBF, BUFFERSIZE);
789 setbuffer(stdout, stdoutbuf, BUFFERSIZE);

Completed in 21 milliseconds