Lines Matching refs:OUT
51 #define OUT stdout macro
53 #define OUT stderr macro
482 fprintf (OUT, "Num fds: %d, polling descriptors %d-%d\n",
499 fputs ("All times in microseconds\n", OUT);
500 fputs ("ITERATION\t", OUT);
502 fprintf (OUT, "%-12s", "select(2)");
505 fprintf (OUT, "%-12s", "poll(2)");
508 if (poll2_times[0] >= 0) fprintf (OUT, "%-12s", "poll2(2)");
512 if (verbose) fprintf (OUT, "\n%d\t\t", count);
514 if (verbose) fprintf (OUT, "%-12ld", select_times[count]);
518 if (verbose) fprintf (OUT, "%-12ld", poll_times[count]);
523 fprintf (OUT, "%-12ld", poll2_times[count]);
527 fputs ("\n\naverage\t\t", OUT);
529 fprintf (OUT, "%-12ld", select_total / max_iter);
532 fprintf (OUT, "%-12ld", poll_total / max_iter);
536 fprintf (OUT, "%-12ld", poll2_total / max_iter);
538 putc ('\n', OUT);
539 fputs ("Per fd\t\t", OUT);
541 fprintf (OUT, "%-12.2f",
550 fprintf (OUT, "%-12.2f",
560 fprintf (OUT, "%-12.2f",
570 fputs ("<- the most important value\n", OUT);