Lines Matching refs:total
452 struct timevar_time_def *total = &timevars[TV_TOTAL].elapsed; local
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);
527 fprintf (fp, "%7.2f ", total->user);
530 fprintf (fp, "%7.2f ", total->sys);
533 fprintf (fp, "%7.2f\n", total->wall);
555 print_time (str, total) in print_time() argument
557 long total;
562 str, total / 1000000, total % 1000000,
564 : (long) (((100.0 * (double) total) / (double) all_time) + .5));