Lines Matching refs:mil
62 int32_t hour, min, sec, mil; in getSystemTimeInformation() local
71 mil = std->getRule()->getRuleMillisInDay(); in getSystemTimeInformation()
72 hour = mil/3600000; in getSystemTimeInformation()
73 mil %= 3600000; in getSystemTimeInformation()
74 min = mil/60000; in getSystemTimeInformation()
75 mil %= 60000; in getSystemTimeInformation()
76 sec = mil/1000; in getSystemTimeInformation()
77 mil %= 1000; in getSystemTimeInformation()
82 standardDate.wMilliseconds = mil; in getSystemTimeInformation()
92 mil = dst->getRule()->getRuleMillisInDay(); in getSystemTimeInformation()
93 hour = mil/3600000; in getSystemTimeInformation()
94 mil %= 3600000; in getSystemTimeInformation()
95 min = mil/60000; in getSystemTimeInformation()
96 mil %= 60000; in getSystemTimeInformation()
97 sec = mil/1000; in getSystemTimeInformation()
98 mil %= 1000; in getSystemTimeInformation()
103 daylightDate.wMilliseconds = mil; in getSystemTimeInformation()