Home | History | Annotate | Download | only in Support

Lines Matching refs:OS

168 static void printVal(double Val, double Total, raw_ostream &OS) {
170 OS << " ----- ";
172 OS << format(" %7.4f (%5.1f%%)", Val, Val*100/Total);
175 void TimeRecord::print(const TimeRecord &Total, raw_ostream &OS) const {
177 printVal(getUserTime(), Total.getUserTime(), OS);
179 printVal(getSystemTime(), Total.getSystemTime(), OS);
181 printVal(getProcessTime(), Total.getProcessTime(), OS);
182 printVal(getWallTime(), Total.getWallTime(), OS);
184 OS << " ";
187 OS << format("%9" PRId64 " ", (int64_t)getMemUsed());
314 void TimerGroup::PrintQueuedTimers(raw_ostream &OS) {
323 OS << "===" << std::string(73, '-') << "===\n";
327 OS.indent(Padding) << Name << '\n';
328 OS << "===" << std::string(73, '-') << "===\n";
334 OS << format(" Total Execution Time: %5.4f seconds (%5.4f wall clock)\n",
336 OS << '\n';
339 OS << " ---User Time---";
341 OS << " --System Time--";
343 OS << " --User+System--";
344 OS << " ---Wall Time---";
346 OS << " ---Mem---";
347 OS << " --- Name ---\n";
352 Entry.first.print(Total, OS);
353 OS << Entry.second << '\n';
356 Total.print(Total, OS);
357 OS << "Total\n\n";
358 OS.flush();
364 void TimerGroup::print(raw_ostream &OS) {
380 PrintQueuedTimers(OS);
384 void TimerGroup::printAll(raw_ostream &OS) {
388 TG->print(OS);