Home | History | Annotate | Download | only in Support

Lines Matching defs:Total

168 static void printVal(double Val, double Total, raw_ostream &OS) {
169 if (Total < 1e-7) // Avoid dividing by zero.
173 OS << format("%5.1f", Val*100/Total) << "%)";
177 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const {
178 if (Total.getUserTime())
179 printVal(getUserTime(), Total.getUserTime(), OS);
180 if (Total.getSystemTime())
181 printVal(getSystemTime(), Total.getSystemTime(), OS);
182 if (Total.getProcessTime())
183 printVal(getProcessTime(), Total.getProcessTime(), OS);
184 printVal(getWallTime(), Total.getWallTime(), OS);
188 if (Total.getMemUsed())
320 TimeRecord Total;
322 Total += TimersToPrint[i].first;
332 // If this is not an collection of ungrouped times, print the total time.
334 // TOTAL line to make the percentages make sense.
336 OS << " Total Execution Time: ";
337 OS << format("%5.4f", Total.getProcessTime()) << " seconds (";
338 OS << format("%5.4f", Total.getWallTime()) << " wall clock)\n";
342 if (Total.getUserTime())
344 if (Total.getSystemTime())
346 if (Total.getProcessTime())
349 if (Total.getMemUsed())
356 Entry.first.print(Total, OS);
360 Total.print(Total, OS);
361 OS << "Total\n\n";