HomeSort by relevance Sort by last modified time
    Searched defs:BUFSIZE (Results 1 - 25 of 32) sorted by null

1 2

  /external/ipsec-tools/src/racoon/
var.h 52 #define BUFSIZE 5120
  /external/openssl/crypto/md4/
md4.c 63 #define BUFSIZE 1024*16
105 static unsigned char buf[BUFSIZE];
  /external/openssl/crypto/md5/
md5.c 63 #define BUFSIZE 1024*16
105 static unsigned char buf[BUFSIZE];
111 i=read(fd,buf,BUFSIZE);
  /external/openssl/crypto/sha/
sha.c 63 #define BUFSIZE 1024*16
102 unsigned char buf[BUFSIZE];
108 i=read(fd,buf,BUFSIZE);
sha1.c 63 #define BUFSIZE 1024*16
105 unsigned char buf[BUFSIZE];
111 i=read(fd,buf,BUFSIZE);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
attr.c 49 #define BUFSIZE 1024
53 char buf[BUFSIZE]; \
56 size = snprintf(buf, BUFSIZE, #str "=%"fmt "\n", data); \
  /development/tools/line_endings/
line_endings.c 8 #define BUFSIZE (1024*8)
22 char buf[BUFSIZE*2+3];
71 char buf[BUFSIZE+2];
73 ssize_t amt2 = len < BUFSIZE ? len : BUFSIZE;
84 char buf2[(BUFSIZE*2)+3];
  /external/fonttools/Lib/fontTools/misc/
xmlReader.py 11 BUFSIZE = 0x4000
42 chunk = file.read(BUFSIZE)
  /external/openssl/crypto/bn/
bnspeed.c 120 #undef BUFSIZE
121 #define BUFSIZE ((long)1024*8)
expspeed.c 146 #undef BUFSIZE
147 #define BUFSIZE ((long)1024*8)
  /external/openssl/crypto/rand/
randfile.c 92 #undef BUFSIZE
93 #define BUFSIZE 1024
114 MS_STATIC unsigned char buf[BUFSIZE];
158 n = (bytes < BUFSIZE)?(int)bytes:BUFSIZE;
160 n = BUFSIZE;
177 OPENSSL_cleanse(buf,BUFSIZE);
184 unsigned char buf[BUFSIZE];
254 i=(n > BUFSIZE)?BUFSIZE:n
    [all...]
  /external/openssl/crypto/txt_db/
txt_db.c 66 #undef BUFSIZE
67 #define BUFSIZE 512
78 int size=BUFSIZE;
111 size+=BUFSIZE;
  /external/openssl/crypto/des/
speed.c 118 #define BUFSIZE ((long)1024)
182 static unsigned char buf[BUFSIZE];
216 cc=count*3*8/BUFSIZE+1;
217 cd=count*8/BUFSIZE+1;
256 BUFSIZE);
260 BUFSIZE);
264 DES_ncbc_encrypt(buf,buf,BUFSIZE,&sch,
268 count,BUFSIZE,d);
269 c=((double)COUNT(cc)*BUFSIZE)/d;
273 BUFSIZE);
    [all...]
des_opts.c 335 #define BUFSIZE ((long)1024)
421 static unsigned char buf[BUFSIZE];
465 cc=count*3*8/BUFSIZE+1;
466 cd=count*8/BUFSIZE+1;
des.c 109 #define BUFSIZE (8*1024)
375 static unsigned char buf[BUFSIZE+8],obuf[BUFSIZE+8];
381 if ( (( buf=OPENSSL_malloc(BUFSIZE+8)) == NULL) ||
382 ((obuf=OPENSSL_malloc(BUFSIZE+8)) == NULL))
473 num=l=fread(&(buf[rem]),1,BUFSIZE,DES_IN);
572 l=uufread(buf,1,BUFSIZE,DES_IN);
574 l=fread(buf,1,BUFSIZE,DES_IN);
614 ll=uufread(&(buf[rem]),1,BUFSIZE,DES_IN);
616 ll=fread(&(buf[rem]),1,BUFSIZE,DES_IN)
    [all...]
  /external/openssl/crypto/rc2/
rc2speed.c 113 #define BUFSIZE ((long)1024)
177 static unsigned char buf[BUFSIZE];
209 cc=count*8/BUFSIZE+1;
255 BUFSIZE);
259 BUFSIZE);
263 RC2_cbc_encrypt(buf,buf,BUFSIZE,&sch,
267 count,BUFSIZE,d);
268 c=((double)COUNT(cc)*BUFSIZE)/d;
  /external/openssl/crypto/rc4/
rc4speed.c 113 #define BUFSIZE ((long)1024)
177 static unsigned char buf[BUFSIZE];
208 cc=count*8/BUFSIZE+1;
233 printf("Doing RC4 on %ld byte blocks for 10 seconds\n",BUFSIZE);
236 printf("Doing RC4 %ld times on %ld byte blocks\n",cc,BUFSIZE);
240 RC4(&sch,BUFSIZE,buf,buf);
243 count,BUFSIZE,d);
244 c=((double)COUNT(cc)*BUFSIZE)/d;
  /external/chromium_org/third_party/libjpeg_turbo/
jdhuff.c 746 #define BUFSIZE (DCTSIZE2 * 2u)
762 if (cinfo->src->bytes_in_buffer < BUFSIZE * (size_t)cinfo->blocks_in_MCU
jchuff.c 424 #define BUFSIZE (DCTSIZE2 * 2)
427 if (state->free_in_buffer < BUFSIZE) { \
459 JOCTET _buffer[BUFSIZE], *buffer;
488 JOCTET _buffer[BUFSIZE], *buffer;
  /external/clang/test/Analysis/
taint-generic.c 32 #define BUFSIZE 10
34 int Buffer[BUFSIZE];
taint-tester.c 5 #define BUFSIZE 10
6 int Buffer[BUFSIZE];
  /external/openssl/apps/
dgst.c 71 #undef BUFSIZE
72 #define BUFSIZE 1024*8
135 if ((buf=(unsigned char *)OPENSSL_malloc(BUFSIZE)) == NULL)
540 OPENSSL_cleanse(buf,BUFSIZE);
568 i=BIO_read(bp,(char *)buf,BUFSIZE);
601 len = BUFSIZE;
611 len=BIO_gets(bp,(char *)buf,BUFSIZE);
  /external/chromium_org/third_party/webrtc/base/
proxydetect.cc 240 const size_t BUFSIZE = 256;
241 char buffer[BUFSIZE];
263 if (len >= BUFSIZE)
    [all...]
  /external/elfutils/0.153/libcpu/
i386_disasm.c 263 size_t bufsize; member in struct:output_data
289 if (unlikely (bufcnt == bufsize)) \
305 if (unlikely (bufcnt + _len > bufsize)) \
319 #define BUFSIZE 512
320 char initbuf[BUFSIZE];
323 size_t bufsize = BUFSIZE; local
331 .bufsize = bufsize,
456 buf = malloc (2 * bufsize);
    [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cnumtst.c     [all...]

Completed in 4091 milliseconds

1 2