Home
last modified time | relevance | path

Searched refs:time_results (Results 1 – 1 of 1) sorted by relevance

/hardware/google/camera/common/profiler/
Dprofiler.cc202 std::vector<TimeResult> time_results; in PrintResult() local
231 time_results.push_back({node_name, max_dt, avg * avg_count, avg_count}); in PrintResult()
234 std::sort(time_results.begin(), time_results.end(), in PrintResult()
237 for (const auto it : time_results) { in PrintResult()
285 std::list<std::pair<std::string, TimeSlot>> time_results; in PrintResult() local
288 if (slot.count > 0 && time_results.size() < time_results.max_size()) { in PrintResult()
289 time_results.push_back({node_name, slot}); in PrintResult()
293 time_results.sort([](const auto& a, const auto& b) { in PrintResult()
297 for (const auto& [node_name, slot] : time_results) { in PrintResult()