Home
last modified time | relevance | path

Searched refs:caption (Results 1 – 1 of 1) sorted by relevance

/net-tools-3.5.0/tinydtls-0.8.2/sha2/
Dsha2speed.c49 void printspeed(char *caption, unsigned long bytes, double time) { in printspeed() argument
51 printf("%s %.4f sec (%.3f GBps)\n", caption, time, (double)bytes/1073741824UL/time); in printspeed()
53 printf("%s %.4f (%.3f MBps)\n", caption, time, (double)bytes/1048576/time); in printspeed()
55 printf("%s %.4f (%.3f KBps)\n", caption, time, (double)bytes/1024/time); in printspeed()
57 printf("%s %.4f (%f Bps)\n", caption, time, (double)bytes/time); in printspeed()