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

/vbox/src/VBox/Runtime/common/time/
H A Dtime.cpp262 int32_t i32Rem; local
275 i32Rem = (int32_t)(i64Div % 1000000000);
277 if (i32Rem < 0)
279 i32Rem += 1000000000;
282 pTime->u32Nanosecond = i32Rem;
285 i32Rem = (int32_t)(i64Div % 60);
287 if (i32Rem < 0)
289 i32Rem += 60;
292 pTime->u8Second = i32Rem;
296 i32Rem
[all...]

Completed in 66 milliseconds