Home
last modified time | relevance | path

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

/hardware/google/camera/common/profiler/
Dprofiler.cc89 float max_dt; member
92 TimeResult(std::string node_name, float max_dt, float avg_dt, float count) in TimeResult()
94 max_dt(max_dt), in TimeResult()
211 float max_dt = 0; in PrintResult() local
217 max_dt = std::max(max_dt, elapsed); in PrintResult()
228 sum_max += max_dt; in PrintResult()
229 max_max = std::max(max_max, max_dt); in PrintResult()
231 time_results.push_back({node_name, max_dt, avg * avg_count, avg_count}); in PrintResult()
239 it.node_name.c_str(), it.max_dt, it.avg_dt, it.avg_count); in PrintResult()