Home | History | Annotate | Download | only in lib

Lines Matching refs:total

442    a special meaning -- it's considered to be the total elapsed time,
452 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed;
481 /* Don't print the total execution time here; that goes at the
504 (total->user == 0 ? 0 : tv->elapsed.user / total->user) * 100);
511 (total->sys == 0 ? 0 : tv->elapsed.sys / total->sys) * 100);
518 (total->wall == 0 ? 0 : tv->elapsed.wall / total->wall) * 100);
524 /* Print total time. */
525 fputs (_(" TOTAL :"), fp);
527 fprintf (fp, "%7.2f ", total->user);
530 fprintf (fp, "%7.2f ", total->sys);
533 fprintf (fp, "%7.2f\n", total->wall);
552 TOTAL (given in microseconds). */
555 print_time (str, total)
557 long total;
562 str, total / 1000000, total % 1000000,
564 : (long) (((100.0 * (double) total) / (double) all_time) + .5));