Searched refs:msElapsedSinceLastSync (Results 1 – 1 of 1) sorted by relevance
670 uint64_t msElapsedSinceLastSync = 0; in calculateCurrentTime() local676 msElapsedSinceLastSync = ticksElapsedSinceLastSync * MILLISECONDS_PER_TICK; in calculateCurrentTime()684 msElapsedSinceLastSync += slewRate * ( msElapsedSinceLastSync / 1000 ); in calculateCurrentTime()688 if( msElapsedSinceLastSync >= 1000 ) in calculateCurrentTime()690 currentTimeSecs = ( uint64_t ) ( pBaseTime->secs ) + ( msElapsedSinceLastSync / 1000 ); in calculateCurrentTime()708 pCurrentTime->msecs = msElapsedSinceLastSync % 1000; in calculateCurrentTime()713 pCurrentTime->msecs = ( uint32_t ) ( msElapsedSinceLastSync ); in calculateCurrentTime()
Completed in 8 milliseconds