Searched defs:BUFSIZE (Results 1 - 25 of 37) sorted by relevance

12

/external/tcpdump/
H A Daddrtoname.h33 #define BUFSIZE 128 macro
/external/ipsec-tools/src/racoon/
H A Dvar.h52 #define BUFSIZE 5120 macro
/external/openssl/apps/
H A Dmd4.c63 #define BUFSIZE 1024*16 macro
105 static unsigned char buf[BUFSIZE];
H A Ddgst.c71 #undef BUFSIZE macro
72 #define BUFSIZE 1024*8 macro
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/openssl/crypto/md4/
H A Dmd4.c63 #define BUFSIZE 1024*16 macro
105 static unsigned char buf[BUFSIZE];
/external/openssl/crypto/md5/
H A Dmd5.c63 #define BUFSIZE 1024*16 macro
105 static unsigned char buf[BUFSIZE];
111 i=read(fd,buf,BUFSIZE);
/external/openssl/crypto/sha/
H A Dsha.c63 #define BUFSIZE 1024*16 macro
102 unsigned char buf[BUFSIZE];
108 i=read(fd,buf,BUFSIZE);
H A Dsha1.c63 #define BUFSIZE 1024*16 macro
105 unsigned char buf[BUFSIZE];
111 i=read(fd,buf,BUFSIZE);
/external/fonttools/Lib/fontTools/misc/
H A DxmlReader.py11 BUFSIZE = 0x4000 variable
42 chunk = file.read(BUFSIZE)
/external/fonttools/Tools/fontTools/misc/
H A DxmlReader.py11 BUFSIZE = 0x4000 variable
42 chunk = file.read(BUFSIZE)
/external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
H A Dattr.c49 #define BUFSIZE 1024 macro
53 char buf[BUFSIZE]; \
56 size = snprintf(buf, BUFSIZE, #str "=%"fmt "\n", data); \
/external/openssl/crypto/rand/
H A Drandfile.c92 #undef BUFSIZE macro
93 #define BUFSIZE 1024 macro
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
[all...]
/external/openssl/crypto/bn/
H A Dbnspeed.c120 #undef BUFSIZE macro
121 #define BUFSIZE ((long)1024*8) macro
H A Dexpspeed.c146 #undef BUFSIZE macro
147 #define BUFSIZE ((long)1024*8) macro
/external/openssl/crypto/rc2/
H A Drc2speed.c113 #define BUFSIZE ((long)1024) macro
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/
H A Drc4speed.c113 #define BUFSIZE ((long)1024) macro
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/openssl/crypto/txt_db/
H A Dtxt_db.c66 #undef BUFSIZE macro
67 #define BUFSIZE 512 macro
78 int size=BUFSIZE;
111 size+=BUFSIZE;
/external/pixman/test/
H A Dprng-test.c57 #define BUFSIZE (8 * 1024 * 1024) macro
65 uint8_t *buf = aligned_malloc (16, BUFSIZE + 1);
70 prng_randmemset_r (&prng, buf, BUFSIZE, 0);
73 (double)BUFSIZE * N / 1000000. / (t2 - t1));
77 prng_randmemset_r (&prng, buf + 1, BUFSIZE, 0);
80 (double)BUFSIZE * N / 1000000. / (t2 - t1));
85 prng_randmemset_r (&prng, buf, BUFSIZE, RANDMEMSET_MORE_00_AND_FF);
89 (double)BUFSIZE * N / 1000000. / (t2 - t1));
94 prng_randmemset_r (&prng, buf + 1, BUFSIZE, RANDMEMSET_MORE_00_AND_FF);
98 (double)BUFSIZE *
[all...]
/external/clang/test/Analysis/
H A Dtaint-generic.c32 #define BUFSIZE 10 macro
34 int Buffer[BUFSIZE];
H A Dtaint-tester.c5 #define BUFSIZE 10 macro
6 int Buffer[BUFSIZE];
/external/openssl/crypto/des/
H A Ddes_opts.c335 #define BUFSIZE ((long)1024) macro
421 static unsigned char buf[BUFSIZE];
465 cc=count*3*8/BUFSIZE+1;
466 cd=count*8/BUFSIZE+1;
H A Dspeed.c118 #define BUFSIZE ((long)1024) macro
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...]
H A Ddes.c109 #define BUFSIZE (8*1024) macro
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_I
[all...]
/external/chromium_org/third_party/libjpeg_turbo/
H A Djdhuff.c746 #define BUFSIZE (DCTSIZE2 * 2u) macro
762 if (cinfo->src->bytes_in_buffer < BUFSIZE * (size_t)cinfo->blocks_in_MCU
H A Djchuff.c424 #define BUFSIZE (DCTSIZE2 * 2) macro
427 if (state->free_in_buffer < BUFSIZE) { \
459 JOCTET _buffer[BUFSIZE], *buffer;
488 JOCTET _buffer[BUFSIZE], *buffer;

Completed in 2052 milliseconds

12