Searched defs:cNanoSecs (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/linux/
H A Dtimer-r0drv-linux.c286 * @param cNanoSecs Nanoseconds.
288 DECLINLINE(ktime_t) rtTimerLnxNanoToKt(uint64_t cNanoSecs)
291 return ktime_set(cNanoSecs / 1000000000, cNanoSecs % 1000000000);
313 * @param cNanoSecs Nanoseconds.
315 DECLINLINE(unsigned long) rtTimerLnxNanoToJiffies(uint64_t cNanoSecs) argument
318 if (cNanoSecs > (uint64_t)TICK_NSEC * MAX_JIFFY_OFFSET)
321 if (RT_LIKELY(cNanoSecs <= UINT32_MAX))
322 return ((uint32_t)cNanoSecs + (TICK_NSEC-1)) / TICK_NSEC;
324 return (cNanoSecs
[all...]
/vbox/src/VBox/VMM/VMMAll/
H A DTMAll.cpp2341 * @param cNanoSecs The nanosecond value ticks to convert.
2344 VMMDECL(uint64_t) TMTimerFromNano(PTMTIMER pTimer, uint64_t cNanoSecs) argument
2351 return cNanoSecs;
2355 return cNanoSecs / 1000000;

Completed in 37 milliseconds