Searched refs:nanoseconds (Results 1 – 12 of 12) sorted by relevance
9 // microsecond units. If the number of ticks is small, then nanoseconds are used.11 // overflows that could occur for long delays if only nanoseconds were used and also29 …nanoseconds are used. If the number of ticks is large, then microseconds are used. This prevents …
9 # microsecond units. If the number of ticks is small, then nanoseconds are used.11 # overflows that could occur for long delays if only nanoseconds were used and also
25 return time_point_cast<nanoseconds>(system_clock::now()).time_since_epoch().count(); in nowNanos()
38 void delay_n(uint32_t nanoseconds) in delay_n() argument40 SimDelayClk( 800*nanoseconds/1000); in delay_n()
78 void delay_n(uint32_t nanoseconds);
24 VOID delay_n(UINT32 nanoseconds);
1227 uint32_t nanoseconds) in delay_n() argument1231 final_tsc += ((get_tsc_freq() * (nanoseconds)) / 1000); in delay_n()
28 TimeDifference(time_t seconds, long nanoseconds, int64_t scale) : in TimeDifference() argument31 ts_.tv_nsec = nanoseconds; in TimeDifference()
46 auto nanos = duration_cast<std::chrono::nanoseconds>(timeout - seconds); in calculateTimeout()
47 auto nanos = duration_cast<std::chrono::nanoseconds>(timeout - seconds); in calculateTimeout()
505 nanoseconds = int(time.time() * 1e9)508 timestamp = int(nanoseconds//100) + 0x01b21dd213814000L
287 const auto d = std::chrono::nanoseconds(t); in batchThread()