Lines Matching refs:Row
319 auto &Row = std::get<2>(Results.back()); in exportStats() local
322 Row.Min /= CycleFrequency; in exportStats()
323 Row.Median /= CycleFrequency; in exportStats()
324 Row.Pct90 /= CycleFrequency; in exportStats()
325 Row.Pct99 /= CycleFrequency; in exportStats()
326 Row.Max /= CycleFrequency; in exportStats()
327 Row.Sum /= CycleFrequency; in exportStats()
330 Row.Function = FuncIdHelper.SymbolOrNumber(FuncId); in exportStats()
331 Row.DebugInfo = FuncIdHelper.FileLineAndColumn(FuncId); in exportStats()
403 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsText() argument
404 OS << llvm::formatv(StatsFormat, FuncId, Count, Row.Min, Row.Median, in exportStatsAsText()
405 Row.Pct90, Row.Pct99, Row.Max, Row.Sum) in exportStatsAsText()
406 << " " << Row.DebugInfo << ": " << Row.Function << "\n"; in exportStatsAsText()
413 exportStats(Header, [&](int32_t FuncId, size_t Count, const ResultRow &Row) { in exportStatsAsCSV() argument
414 OS << FuncId << ',' << Count << ',' << Row.Min << ',' << Row.Median << ',' in exportStatsAsCSV()
415 << Row.Pct90 << ',' << Row.Pct99 << ',' << Row.Max << "," << Row.Sum in exportStatsAsCSV()
416 << ",\"" << Row.DebugInfo << "\",\"" << Row.Function << "\"\n"; in exportStatsAsCSV()