Searched defs:u64Last (Results 1 - 7 of 7) sorted by relevance

/vbox/src/VBox/Runtime/testcase/
H A DtstRand.cpp147 uint64_t u64Last; member in struct:__anon16754
171 uint64_t const uLast = s_aU64Tests[iTest].u64Last;
411 uint64_t u64Last; member in struct:__anon16758
435 uint64_t const uLast = s_aU64Tests[iTest].u64Last;
H A DtstRTR0Timer.cpp103 uint64_t u64Last; member in struct:TSTRTR0TIMEROMNI1
178 paStates[iCpu].u64Last = RTTimeSystemNanoTS();
181 paStates[iCpu].u64Start = paStates[iCpu].u64Last;
802 paStates[iCpu].u64Last = 0;
827 if (paStates[iCpu].u64Last > u64MaxStop)
828 u64MaxStop = paStates[iCpu].u64Last;
/vbox/src/VBox/Runtime/common/rand/
H A Drandadv.cpp190 RTDECL(uint64_t) RTRandAdvU64Ex(RTRAND hRand, uint64_t u64First, uint64_t u64Last) RT_NO_THROW
198 return pThis->pfnGetU64(pThis, u64First, u64Last);
332 DECLHIDDEN(DECLCALLBACK(uint64_t)) rtRandAdvSynthesizeU64FromBytes(PRTRANDINT pThis, uint64_t u64First, uint64_t u64Last) argument
341 const uint64_t offLast = u64Last - u64First;
367 DECLHIDDEN(DECLCALLBACK(uint64_t)) rtRandAdvSynthesizeU64FromU32(PRTRANDINT pThis, uint64_t u64First, uint64_t u64Last) argument
369 uint64_t off = u64Last - u64First;
/vbox/src/VBox/VMM/VMMAll/
H A DTMAllVirtual.cpp360 uint64_t u64Last = ASMAtomicUoReadU64(&pVM->tm.s.u64VirtualSync); local
361 if (u64Last > u64)
363 u64 = u64Last + 1;
460 uint64_t u64Last = ASMAtomicUoReadU64(&pVM->tm.s.u64VirtualSync); local
461 if (u64Last > u64)
463 u64 = u64Last + 1;
H A DTMAll.cpp1132 uint64_t u64Last = ASMAtomicReadU64(&pVM->tm.s.u64VirtualSync); local
1133 AssertMsgStmt(u64Expire >= u64Last,
1134 ("exp=%#llx last=%#llx\n", u64Expire, u64Last),
1135 u64Expire = u64Last);
/vbox/src/VBox/Storage/testcase/
H A DtstVD.cpp281 * [u64First..u64Last].
285 * @param u64Last Last number in the set.
287 RTDECL(uint64_t) RTPRandU64Ex(PRNDCTX pCtx, uint64_t u64First, uint64_t u64Last) argument
289 if (u64First == 0 && u64Last == UINT64_MAX)
293 uint64_t u64Range = u64Last - u64First + 1;
/vbox/src/VBox/VMM/VMMR3/
H A DTM.cpp2239 uint64_t u64Last = ASMAtomicUoReadU64(&pVM->tm.s.u64VirtualSync); local
2240 if (u64Last > u64Now)
2242 u64Now = u64Last + 1;

Completed in 90 milliseconds