Lines Matching refs:PrintTime
500 static void PrintTime(const char *s, UInt64 val, UInt64 total)
621 PrintTime("Kernel ", kernelTime, totalTime);
634 PrintTime("User ", userTime, totalTime);
648 PrintTime("Process", processTime, totalTime);
653 PrintTime("Global ", totalTime, totalTime);
671 static void PrintTime(const char *s, UInt64 val, UInt64 total_us, UInt64 kFreq)
735 PrintTime("Kernel ", (UInt64)t.tms_stime, totalTime, kFreq);
736 PrintTime("User ", (UInt64)t.tms_utime, totalTime, kFreq);
737 PrintTime("Process", (UInt64)t.tms_utime + (UInt64)t.tms_stime, totalTime, kFreq);
738 PrintTime("Global ", totalTime, totalTime, 0);