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

/vbox/src/VBox/Runtime/common/time/
H A Dtime.cpp381 int64_t i64Nanos; local
406 i64Nanos = (uint64_t)pTime->u32Nanosecond
408 AssertMsgReturn(i32Days != RTTIME_MAX_DAY || i64Nanos <= RTTIME_MAX_DAY_NANO, ("%RI64\n", i64Nanos), NULL);
409 AssertMsgReturn(i32Days != RTTIME_MIN_DAY || i64Nanos >= RTTIME_MIN_DAY_NANO, ("%RI64\n", i64Nanos), NULL);
411 i64Nanos += i32Days * UINT64_C(86400000000000);
413 pTimeSpec->i64NanosecondsRelativeToUnixEpoch = i64Nanos;

Completed in 33 milliseconds