Searched refs:formatSI (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | kmp_stats.cpp | 138 std::string result = formatSI((double)sampleCount, 9, ' '); in format() 141 result = result + std::string(", ") + formatSI(0.0, 9, unit); in format() 142 result = result + std::string(", ") + formatSI(0.0, 9, unit); in format() 143 result = result + std::string(", ") + formatSI(0.0, 9, unit); in format() 145 result = result + std::string(", ") + formatSI(0.0, 9, unit); in format() 146 result = result + std::string(", ") + formatSI(0.0, 9, unit); in format() 148 result = result + std::string(", ") + formatSI(minVal, 9, unit); in format() 150 result = result + std::string(", ") + formatSI(maxVal, 9, unit); in format() 220 formatSI(0.0, 9, unit); in format() 231 result << formatSI(count(i), 9, ' ') << ", " << formatSI(total(i), 9, unit); in format() [all …]
|
| H A D | kmp_stats_timing.h | 105 extern std::string formatSI(double interval, int width, char unit); 108 return formatSI(interval, width, 'S'); in formatSeconds() 112 return formatSI(interval, width, 'T'); in formatTicks()
|
| H A D | kmp_stats_timing.cpp | 88 std::string formatSI(double interval, int width, char unit) { in formatSI() function
|