Home | History | Annotate | Download | only in des

Lines Matching defs:COUNT

181 	long count;
203 count=10;
208 count*=2;
210 for (i=count; i; i--)
214 ca=count;
215 cb=count*3;
216 cc=count*3*8/BUFSIZE+1;
217 cd=count*8/BUFSIZE+1;
218 ce=count/20+1;
220 #define COND(d) (count != (d))
221 #define COUNT(d) (d)
224 #define COUNT(d) (count)
231 for (count=0,run=1; COND(ca); count++)
234 printf("%ld set_key's in %.2f seconds\n",count,d);
235 a=((double)COUNT(ca))/d;
244 for (count=0,run=1; COND(cb); count++)
251 printf("%ld DES_encrypt's in %.2f second\n",count,d);
252 b=((double)COUNT(cb)*8)/d;
263 for (count=0,run=1; COND(cc); count++)
268 count,BUFSIZE,d);
269 c=((double)COUNT(cc)*BUFSIZE)/d;
280 for (count=0,run=1; COND(cd); count++)
289 count,BUFSIZE,d);
290 d=((double)COUNT(cd)*BUFSIZE)/d;
299 for (count=0,run=1; COND(ce); count++)
302 printf("%ld crypts in %.2f second\n",count,e);
303 e=((double)COUNT(ce))/e;