Home | History | Annotate | Download | only in lib

Lines Matching refs:fp

441 /* Summarize timing variables to FP.  The timing variable TV_TOTAL has
446 timevar_print (fp)
447 FILE *fp;
460 if (fp == 0)
461 fp = stderr;
475 fputs (_("\nExecution times (seconds)\n"), fp);
498 fprintf (fp, " %-22s:", tv->name);
502 fprintf (fp, "%7.2f (%2.0f%%) usr",
509 fprintf (fp, "%7.2f (%2.0f%%) sys",
516 fprintf (fp, "%7.2f (%2.0f%%) wall",
521 putc ('\n', fp);
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);