Lines Matching refs:m_times
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];
154 Vector2d m_times; variable