Home | History | Annotate | Download | only in cppunit

Lines Matching defs:stop

49   void stop() {
51 LARGE_INTEGER stop;
52 QueryPerformanceCounter(&stop);
55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart);
56 if (stop.LowPart < m_restart.LowPart) {
57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) {
60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart;
63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) {
66 m_stop.LowPart += stop.LowPart - m_restart.LowPart;
70 m_stop = stop;