Searched refs:BUFSIZE (Results 1 - 25 of 109) sorted by relevance

12345

/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/perform/
H A DdoPerform11 set BUFSIZE=$argv[2]
18 ./perform $ITER $BUFSIZE a=d
19 ./perform $ITER $BUFSIZE a=d e
20 ./perform $ITER $BUFSIZE a=3
21 ./perform $ITER $BUFSIZE a=3 e
22 ./perform $ITER $BUFSIZE a=2
23 ./perform $ITER $BUFSIZE a=2 e
24 ./perform $ITER $BUFSIZE a=5
25 ./perform $ITER $BUFSIZE a=5 e
26 ./perform $ITER $BUFSIZE
[all...]
H A DaesPerform11 set BUFSIZE=$argv[2]
14 perform $ITER $BUFSIZE a=a e b=128 k=128
15 perform $ITER $BUFSIZE a=a e b=128 k=192
16 perform $ITER $BUFSIZE a=a e b=128 k=256
17 perform $ITER $BUFSIZE a=a e b=192 k=128
18 perform $ITER $BUFSIZE a=a e b=192 k=192
19 perform $ITER $BUFSIZE a=a e b=192 k=256
20 perform $ITER $BUFSIZE a=a e b=256 k=128
21 perform $ITER $BUFSIZE a=a e b=256 k=192
22 perform $ITER $BUFSIZE
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/performRaw/
H A DdoPerformRaw11 set BUFSIZE=$argv[2]
18 ./performRaw $ITER $BUFSIZE a=d
19 ./performRaw $ITER $BUFSIZE a=d e
20 ./performRaw $ITER $BUFSIZE a=3
21 ./performRaw $ITER $BUFSIZE a=3 e
22 ./performRaw $ITER $BUFSIZE a=2
23 ./performRaw $ITER $BUFSIZE a=2 e
24 ./performRaw $ITER $BUFSIZE a=4
25 ./performRaw $ITER $BUFSIZE a=5
26 ./performRaw $ITER $BUFSIZE
[all...]
H A DaesPerformRaw11 set BUFSIZE=$argv[2]
14 performRaw $ITER $BUFSIZE a=a e b=128 k=128
15 performRaw $ITER $BUFSIZE a=a e b=128 k=192
16 performRaw $ITER $BUFSIZE a=a e b=128 k=256
17 performRaw $ITER $BUFSIZE a=a e b=192 k=128
18 performRaw $ITER $BUFSIZE a=a e b=192 k=192
19 performRaw $ITER $BUFSIZE a=a e b=192 k=256
20 performRaw $ITER $BUFSIZE a=a e b=256 k=128
21 performRaw $ITER $BUFSIZE a=a e b=256 k=192
22 performRaw $ITER $BUFSIZE
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/cspxutils/sha2Time/
H A Dsha2Time.cpp19 #define BUFSIZE (8 * 1024) macro
40 unsigned char *text = (unsigned char *)malloc(BUFSIZE);
41 appGetRandomBytes(text, BUFSIZE);
60 if(toMove > BUFSIZE) {
61 thisMove = BUFSIZE;
86 if(toMove > BUFSIZE) {
87 thisMove = BUFSIZE;
112 if(toMove > BUFSIZE) {
113 thisMove = BUFSIZE;
/macosx-10.10.1/OpenSSL098-52/src/crypto/rand/
H A Drandfile.c91 #undef BUFSIZE macro
92 #define BUFSIZE 1024 macro
113 MS_STATIC unsigned char buf[BUFSIZE];
152 n = (bytes < BUFSIZE)?(int)bytes:BUFSIZE;
154 n = BUFSIZE;
171 OPENSSL_cleanse(buf,BUFSIZE);
178 unsigned char buf[BUFSIZE];
245 i=(n > BUFSIZE)?BUFSIZE
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libcmd/
H A Drevlib.c29 #define BUFSIZE SF_BUFSIZE macro
40 char buff[BUFSIZE];
56 offset = rounddown(offset,BUFSIZE);
59 n = BUFSIZE;
103 offset -= BUFSIZE;
/macosx-10.10.1/OpenSSL098-52/src/crypto/des/
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...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bf/
H A Dbfspeed.c113 #define BUFSIZE ((long)1024) macro
177 static unsigned char buf[BUFSIZE];
209 cc=count*8/BUFSIZE+1;
255 BUFSIZE);
259 BUFSIZE);
263 BF_cbc_encrypt(buf,buf,BUFSIZE,&sch,
267 count,BUFSIZE,d);
268 c=((double)COUNT(cc)*BUFSIZE)/d;
/macosx-10.10.1/OpenSSL098-52/src/crypto/cast/
H A Dcast_spd.c113 #define BUFSIZE ((long)1024) macro
177 static unsigned char buf[BUFSIZE];
209 cc=count*8/BUFSIZE+1;
255 BUFSIZE);
259 BUFSIZE);
263 CAST_cbc_encrypt(buf,buf,BUFSIZE,&sch,
267 count,BUFSIZE,d);
268 c=((double)COUNT(cc)*BUFSIZE)/d;
/macosx-10.10.1/OpenSSL098-52/src/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;
/macosx-10.10.1/OpenSSL098-52/src/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;
/macosx-10.10.1/OpenSSL098-52/src/crypto/rc5/
H A Drc5speed.c113 #define BUFSIZE ((long)1024) macro
177 static unsigned char buf[BUFSIZE];
209 cc=count*8/BUFSIZE+1;
255 BUFSIZE);
259 BUFSIZE);
263 RC5_32_cbc_encrypt(buf,buf,BUFSIZE,&sch,
267 count,BUFSIZE,d);
268 c=((double)COUNT(cc)*BUFSIZE)/d;
/macosx-10.10.1/adv_cmds-158/colldef/
H A Dcommon.h10 #define BUFSIZE 80 macro
/macosx-10.10.1/OpenSSL098-52/src/crypto/md2/
H A Dmd2.c63 #define BUFSIZE 1024*16 macro
103 static unsigned char buf[BUFSIZE];
109 i=read(fd,buf,BUFSIZE);
/macosx-10.10.1/OpenSSL098-52/src/crypto/md5/
H A Dmd5.c63 #define BUFSIZE 1024*16 macro
105 static unsigned char buf[BUFSIZE];
111 i=read(fd,buf,BUFSIZE);
/macosx-10.10.1/OpenSSL098-52/src/crypto/ripemd/
H A Drmd160.c63 #define BUFSIZE 1024*16 macro
105 static unsigned char buf[BUFSIZE];
111 i=read(fd,buf,BUFSIZE);
/macosx-10.10.1/OpenSSL098-52/src/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);
/macosx-10.10.1/apache-793/httpd/modules/ssl/
H A Dssl_engine_rand.c133 #define BUFSIZE 8192 macro
138 unsigned char caBuf[BUFSIZE];
144 nRead = BUFSIZE;
148 nRead = (nTodo < BUFSIZE ? nTodo : BUFSIZE);
/macosx-10.10.1/vim-55/src/
H A Duninstal.c69 DWORD bufsize = BUFSIZE;
94 DWORD bufsize = BUFSIZE;
181 char line[BUFSIZE];
189 while (fgets(line, BUFSIZE, fd) != NULL)
238 char buf[BUFSIZE];
255 char path[BUFSIZE];
266 char path[BUFSIZE];
296 char buf[BUFSIZE];
337 char icon[BUFSIZE];
338 char path[BUFSIZE];
[all...]
H A Ddosinst.h73 #define BUFSIZE 512 /* long enough to hold a file name path */ macro
176 static char widename[2 * BUFSIZE];
177 static char location[2 * BUFSIZE + 2];
185 (LPWSTR)widename, BUFSIZE);
190 (LPSTR)widename, 2 * BUFSIZE, NULL, NULL);
332 char tbuf[BUFSIZE];
378 char batpath[BUFSIZE]; /* path of batch file to create; not
422 char cmd_buf[BUFSIZE];
530 char olddir[BUFSIZE];
556 if (getcwd(olddir, BUFSIZE)
[all...]
/macosx-10.10.1/xnu-2782.1.97/osfmk/prng/YarrowCoreLib/src/
H A Dcomp.c89 #define BUFSIZE 16384 /* 16K */ macro
91 #define SHIFTSIZE 4096 /* BUFSIZE/4 */
99 ctx->buf = mmMalloc(BUFSIZE);
123 if(inplen+SHIFTSIZE>BUFSIZE)
125 blocksize = _MIN(inplen,BUFSIZE);
131 if(inplen+ctx->spaceused>BUFSIZE)
133 shifts = (uInt)ceil((inplen+ctx->spaceused-BUFSIZE)/(float)SHIFTSIZE);
135 memmove(buf,buf+blocksize,BUFSIZE-blocksize);
/macosx-10.10.1/vim-55/src/GvimExt/
H A Dgvimext.cpp43 #define BUFSIZE 1100 macro
48 // Returns the path in name[BUFSIZE]. It's empty when it fails.
61 hlen = BUFSIZE;
93 name = (char *)malloc(BUFSIZE);
95 mbstowcs(nameW, name, BUFSIZE);
100 // Get the Vim runtime directory into buf[BUFSIZE].
236 char szBuff[BUFSIZE];
237 char szLang[BUFSIZE];
249 len = BUFSIZE;
267 (LPTSTR)szBuff, BUFSIZE);
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/urlPageGrab/
H A DcfSimpleGet.cpp9 #define BUFSIZE 1024 macro
26 UInt8 rbuf[BUFSIZE];
89 irtn = CFReadStreamRead(rdStrm, rbuf, BUFSIZE);

Completed in 293 milliseconds

12345