Home | History | Annotate | Download | only in cppunit

Lines Matching refs:LowPart

28     m_start.LowPart = m_restart.LowPart = m_stop.LowPart = 0;
43 if (m_start.HighPart == 0 && m_start.LowPart == 0) {
53 if ((m_stop.HighPart != 0 || m_stop.LowPart != 0) &&
54 m_restart.HighPart != 0 && m_restart.LowPart != 0) {
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;
79 elapsed.LowPart = m_stop.LowPart - m_start.LowPart;