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

/vbox/src/VBox/VMM/VMMR3/
H A DVMEmt.cpp566 uint32_t cMilliSecs = RT_MIN(u64NanoTS / 1000000, 15); local
567 if (cMilliSecs <= pUVCpu->vm.s.Halt.Method12.cNSBlockedTooLongAvg)
568 cMilliSecs = 1;
570 cMilliSecs -= pUVCpu->vm.s.Halt.Method12.cNSBlockedTooLongAvg;
572 //RTLogRelPrintf("u64NanoTS=%RI64 cLoops=%3d sleep %02dms (%7RU64) ", u64NanoTS, cLoops, cMilliSecs, u64NanoTS);
574 rc = RTSemEventWait(pUVCpu->vm.s.EventSemWait, cMilliSecs);
/vbox/src/VBox/VMM/VMMAll/
H A DTMAll.cpp2397 * @param cMilliSecs The millisecond value ticks to convert.
2400 VMMDECL(uint64_t) TMTimerFromMilli(PTMTIMER pTimer, uint64_t cMilliSecs) argument
2407 return cMilliSecs * 1000000;
2411 return cMilliSecs;

Completed in 50 milliseconds