Searched refs:u64Last (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Runtime/r0drv/linux/
H A Dtime-r0drv-linux.c99 uint64_t u64Last = s_u64Last;
106 u32LastJiffies = (uint32_t)u64Last;
107 cRollovers = u64Last >> 32;
120 if (!ASMAtomicCmpXchgU64(&s_u64Last, u64NewLast, u64Last))
126 ASMAtomicCmpXchgU64(&s_u64Last, u64NewLast, u64Last);
/vbox/src/VBox/Runtime/include/internal/
H A Drand.h75 * @param u64Last The last number in the range (i.e. inclusive).
77 DECLCALLBACKMEMBER(uint64_t, pfnGetU64)(PRTRANDINT pThis, uint64_t u64First, uint64_t u64Last);
165 DECLHIDDEN(DECLCALLBACK(uint64_t)) rtRandAdvSynthesizeU64FromBytes(PRTRANDINT pThis, uint64_t u64First, uint64_t u64Last);
166 DECLHIDDEN(DECLCALLBACK(uint64_t)) rtRandAdvSynthesizeU64FromU32(PRTRANDINT pThis, uint64_t u64First, uint64_t u64Last);
/vbox/include/iprt/
H A Drand.h96 * Generate a 64-bit unsigned random number in the set [u64First..u64Last].
100 * @param u64Last Last number in the set.
102 RTDECL(uint64_t) RTRandU64Ex(uint64_t u64First, uint64_t u64Last) RT_NO_THROW;
293 * Generate a 64-bit unsigned random number in the set [u64First..u64Last].
298 * @param u64Last Last number in the set.
300 RTDECL(uint64_t) RTRandAdvU64Ex(RTRAND hRand, uint64_t u64First, uint64_t u64Last) RT_NO_THROW;
/vbox/src/VBox/Runtime/common/rand/
H A Drand.cpp146 RTDECL(uint64_t) RTRandU64Ex(uint64_t u64First, uint64_t u64Last) RT_NO_THROW
149 return RTRandAdvU64Ex(g_hRand, u64First, u64Last);
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/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/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 76 milliseconds