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

/vbox/src/VBox/VMM/VMMR3/
H A DTM.cpp503 if ( (iPeriod > 0 && u64 <= pVM->tm.s.aVirtualSyncCatchUpPeriods[iPeriod - 1].u64Start) \
506 pVM->tm.s.aVirtualSyncCatchUpPeriods[iPeriod].u64Start = u64; \
507 rc = CFGMR3QueryU32(pCfgHandle, "CatchUpPrecentage" #iPeriod, &pVM->tm.s.aVirtualSyncCatchUpPeriods[iPeriod].u32Percentage); \
509 pVM->tm.s.aVirtualSyncCatchUpPeriods[iPeriod].u32Percentage = (DefPct); \
524 AssertCompile(RT_ELEMENTS(pVM->tm.s.aVirtualSyncCatchUpPeriods) == 10);
795 for (unsigned i = 0; i < RT_ELEMENTS(pVM->tm.s.aVirtualSyncCatchUpPeriods); i++)
797 STAMR3RegisterF(pVM, &pVM->tm.s.aVirtualSyncCatchUpPeriods[i].u32Percentage, STAMTYPE_U32, STAMVISIBILITY_ALWAYS, STAMUNIT_PCT, "The catch-up percentage.", "/TM/VirtualSync/Periods/%u", i);
800 STAMR3RegisterF(pVM, &pVM->tm.s.aVirtualSyncCatchUpPeriods[i].u64Start, STAMTYPE_U64, STAMVISIBILITY_ALWAYS, STAMUNIT_NS, "Start of this period (lag).", "/TM/VirtualSync/Periods/%u/Start", i);
2407 while ( i + 1 < RT_ELEMENTS(pVM->tm.s.aVirtualSyncCatchUpPeriods)
2408 && offLag >= pVM->tm.s.aVirtualSyncCatchUpPeriods[
[all...]
/vbox/src/VBox/VMM/include/
H A DTMInternal.h459 } aVirtualSyncCatchUpPeriods[TM_MAX_CATCHUP_PERIODS]; member in struct:TM
/vbox/src/VBox/VMM/testcase/
H A DtstVMStruct.h1062 GEN_CHECK_OFF(TM, aVirtualSyncCatchUpPeriods);
1063 GEN_CHECK_OFF_DOT(TM, aVirtualSyncCatchUpPeriods[0].u64Start);
1064 GEN_CHECK_OFF_DOT(TM, aVirtualSyncCatchUpPeriods[0].u32Percentage);
1065 GEN_CHECK_OFF_DOT(TM, aVirtualSyncCatchUpPeriods[1].u64Start);
1066 GEN_CHECK_OFF_DOT(TM, aVirtualSyncCatchUpPeriods[1].u32Percentage);

Completed in 4029 milliseconds