Searched defs:TmUct (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/r3/posix/
H A Dtimelocal-posix.cpp70 struct tm TmUct; local
71 if (!gmtime_r(&UnixTime, &TmUct))
78 if ( TmLocal.tm_hour == TmUct.tm_hour
79 && TmLocal.tm_min == TmUct.tm_min
80 && TmLocal.tm_sec == TmUct.tm_sec
81 && TmLocal.tm_mday == TmUct.tm_mday)
87 int UctSecs = TmUct.tm_hour * 3600
88 + TmUct.tm_min * 60
89 + TmUct.tm_sec;
90 if (TmLocal.tm_mday != TmUct
[all...]

Completed in 55 milliseconds