Home | History | Annotate | Download | only in cppunit

Lines Matching refs:m_restart

28     m_start.LowPart = m_restart.LowPart = m_stop.LowPart = 0;
29 m_start.HighPart = m_restart.HighPart = m_stop.HighPart = 0;
42 QueryPerformanceCounter(&m_restart);
44 m_start = m_restart;
54 m_restart.HighPart != 0 && m_restart.LowPart != 0) {
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;
97 LARGE_INTEGER m_start, m_stop, m_restart;