Lines Matching full:printf
193 printf("To get the most accurate results, try to run this\n");
194 printf("program when this computer is idle.\n");
201 printf("First we calculate the approximate speed ...\n");
219 printf("Doing set_key %ld times\n",ca);
226 printf("Doing set_key for 10 seconds\n");
234 printf("%ld set_key's in %.2f seconds\n",count,d);
238 printf("Doing DES_encrypt's for 10 seconds\n");
241 printf("Doing DES_encrypt %ld times\n",cb);
251 printf("%ld DES_encrypt's in %.2f second\n",count,d);
255 printf("Doing DES_cbc_encrypt on %ld byte blocks for 10 seconds\n",
259 printf("Doing DES_cbc_encrypt %ld times on %ld byte blocks\n",cc,
267 printf("%ld DES_cbc_encrypt's of %ld byte blocks in %.2f second\n",
272 printf("Doing DES_ede_cbc_encrypt on %ld byte blocks for 10 seconds\n",
276 printf("Doing DES_ede_cbc_encrypt %ld times on %ld byte blocks\n",cd,
288 printf("%ld DES_ede_cbc_encrypt's of %ld byte blocks in %.2f second\n",
293 printf("Doing crypt for 10 seconds\n");
296 printf("Doing crypt %ld times\n",ce);
302 printf("%ld crypts in %.2f second\n",count,e);
305 printf("set_key per sec = %12.2f (%9.3fuS)\n",a,1.0e6/a);
306 printf("DES raw ecb bytes per sec = %12.2f (%9.3fuS)\n",b,8.0e6/b);
307 printf("DES cbc bytes per sec = %12.2f (%9.3fuS)\n",c,8.0e6/c);
308 printf("DES ede cbc bytes per sec = %12.2f (%9.3fuS)\n",d,8.0e6/d);
309 printf("crypt per sec = %12.2f (%9.3fuS)\n",e,1.0e6/e);