Searched refs:i32Div (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/time/
H A Dtime.cpp261 int32_t i32Div; local
295 i32Div = (int32_t)i64Div; /* 60,000,000,000 > 33bit, so 31bit suffices. */
296 i32Rem = i32Div % 60;
297 i32Div /= 60;
301 i32Div--;
306 i32Rem = i32Div % 24;
307 i32Div /= 24; /* days relative to 1970-01-01 */
311 i32Div--;
316 pTime->u8WeekDay = ((int)(i32Div % 7) + 3 + 7) % 7;
324 iYear = OFF_YEAR_IDX_EPOCH + i32Div / 36
[all...]

Completed in 43 milliseconds