Searched refs:cNanoSeconds (Results 1 - 3 of 3) sorted by relevance

/vbox/src/VBox/ValidationKit/utils/misc/
H A Dloadgenerator.cpp59 static void LoadGenSpin(uint64_t cNanoSeconds) argument
66 } while (RTTimeNanoTS() - u64StartTS < cNanoSeconds && !g_fQuit);
108 static void LoadGenIpi(uint64_t cNanoSeconds) argument
120 } while (RTTimeNanoTS() - u64StartTS < cNanoSeconds && !g_fQuit);
173 uint64_t cNanoSeconds = UINT64_MAX; local
211 rc = RTStrToUInt64Ex(ValueUnion.psz, &psz, 0, &cNanoSeconds);
232 uint64_t u64 = cNanoSeconds * u64Factor;
233 if (u64 < cNanoSeconds || (u64 < u64Factor && u64))
235 psz, cNanoSeconds, u64Factor);
236 cNanoSeconds
369 s_aLoadTypes[iLoadType].pfnThread(RTThreadSelf(), &cNanoSeconds); local
[all...]
/vbox/src/VBox/Runtime/generic/
H A Dtimerlr-generic.cpp292 uint64_t cNanoSeconds; local
322 cNanoSeconds = pThis->u64NextTS - u64NanoTS;
329 cNanoSeconds = RTTimerGetSystemGranularity() / 2;
331 cNanoSeconds = 1000000; /* 1ms */
333 pThis->u64NextTS = u64NanoTS + cNanoSeconds;
337 cNanoSeconds = pThis->u64NextTS - u64NanoTS;
341 (RTMSINTERVAL)(cNanoSeconds < 1000000 ? 1 : cNanoSeconds / 1000000));
H A Dtimer-generic.cpp280 uint64_t cNanoSeconds = pTimer->u64NextTS - u64NanoTS; local
282 if (cNanoSeconds > 10)
285 int rc = RTSemEventWait(pTimer->Event, cNanoSeconds < 1000000 ? 1 : cNanoSeconds / 1000000);

Completed in 43 milliseconds