Searched refs:m_times (Results 1 – 3 of 3) sorted by relevance
77 m_times[CPU_TIMER] = getCpuTime() - m_starts[CPU_TIMER]; in stop()78 m_times[REAL_TIMER] = getRealTime() - m_starts[REAL_TIMER]; in stop()80 m_bests = m_bests.cwiseMin(m_times); in stop()81 m_worsts = m_worsts.cwiseMax(m_times); in stop()83 m_bests(0) = std::min(m_bests(0),m_times(0)); in stop()84 m_bests(1) = std::min(m_bests(1),m_times(1)); in stop()85 m_worsts(0) = std::max(m_worsts(0),m_times(0)); in stop()86 m_worsts(1) = std::max(m_worsts(1),m_times(1)); in stop()88 m_totals += m_times; in stop()95 return m_times[TIMER];[all …]
131 m_times.clear(); in reset()202 m_times.add(title, monotonicallyIncreasingTime()); in consoleTime()212 HashMap<String, double>::iterator it = m_times.find(title); in consoleTimeEnd()213 if (it == m_times.end()) in consoleTimeEnd()217 m_times.remove(it); in consoleTimeEnd()
117 HashMap<String, double> m_times; variable