Lines Matching refs:mil
64 int32_t hour, min, sec, mil; in getSystemTimeInformation() local
73 mil = std->getRule()->getRuleMillisInDay(); in getSystemTimeInformation()
74 hour = mil/3600000; in getSystemTimeInformation()
75 mil %= 3600000; in getSystemTimeInformation()
76 min = mil/60000; in getSystemTimeInformation()
77 mil %= 60000; in getSystemTimeInformation()
78 sec = mil/1000; in getSystemTimeInformation()
79 mil %= 1000; in getSystemTimeInformation()
84 standardDate.wMilliseconds = mil; in getSystemTimeInformation()
94 mil = dst->getRule()->getRuleMillisInDay(); in getSystemTimeInformation()
95 hour = mil/3600000; in getSystemTimeInformation()
96 mil %= 3600000; in getSystemTimeInformation()
97 min = mil/60000; in getSystemTimeInformation()
98 mil %= 60000; in getSystemTimeInformation()
99 sec = mil/1000; in getSystemTimeInformation()
100 mil %= 1000; in getSystemTimeInformation()
105 daylightDate.wMilliseconds = mil; in getSystemTimeInformation()