HomeSort by relevance Sort by last modified time
    Searched refs:m_times (Results 1 - 3 of 3) sorted by null

  /external/eigen/bench/
BenchTimer.h 77 m_times[CPU_TIMER] = getCpuTime() - m_starts[CPU_TIMER];
78 m_times[REAL_TIMER] = getRealTime() - m_starts[REAL_TIMER];
80 m_bests = m_bests.cwiseMin(m_times);
81 m_worsts = m_worsts.cwiseMax(m_times);
83 m_bests(0) = std::min(m_bests(0),m_times(0));
84 m_bests(1) = std::min(m_bests(1),m_times(1));
85 m_worsts(0) = std::max(m_worsts(0),m_times(0));
86 m_worsts(1) = std::max(m_worsts(1),m_times(1));
88 m_totals += m_times;
95 return m_times[TIMER]
154 Vector2d m_times; member in class:Eigen::BenchTimer
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorConsoleAgent.cpp 131 m_times.clear();
202 m_times.add(title, monotonicallyIncreasingTime());
212 HashMap<String, double>::iterator it = m_times.find(title);
213 if (it == m_times.end())
217 m_times.remove(it);
InspectorConsoleAgent.h 117 HashMap<String, double> m_times; member in class:WebCore::InspectorConsoleAgent

Completed in 513 milliseconds