Searched refs:nanoseconds (Results 1 – 1 of 1) sorted by relevance
187 …uint64_t nanoseconds = ((uint64_t) tv.tv_sec) * 1000 * 1000 * 1000 + (uint64_t)milliseconds * 1000… in Wait() local189 ts.tv_sec = (time_t)(nanoseconds / 1000 / 1000 / 1000); in Wait()190 ts.tv_nsec = (long)(nanoseconds - ((uint64_t) ts.tv_sec) * 1000 * 1000 * 1000); in Wait()