Searched refs:TICKS_PER_SEC (Results 1 – 1 of 1) sorted by relevance
125 #define TICKS_PER_SEC ((int64_t) 1e9 / NSEC_PER_TICK) macro126 static const int64_t WIN_TO_UNIX_TICK_OFFSET = 11644473600 * TICKS_PER_SEC;130 ts->tv_sec = filetime / TICKS_PER_SEC; in uv__filetime_to_timespec()131 ts->tv_nsec = (filetime % TICKS_PER_SEC) * NSEC_PER_TICK; in uv__filetime_to_timespec()140 int64_t bigtime = ((time) * TICKS_PER_SEC + WIN_TO_UNIX_TICK_OFFSET); \
Completed in 15 milliseconds