Searched refs:i64Last (Results 1 - 4 of 4) sorted by relevance

/vbox/include/iprt/
H A Drand.h80 * Generate a 64-bit signed random number in the set [i64First..i64Last].
84 * @param i64Last Last number in the set.
86 RTDECL(int64_t) RTRandS64Ex(int64_t i64First, int64_t i64Last) RT_NO_THROW;
276 * Generate a 64-bit signed random number in the set [i64First..i64Last].
281 * @param i64Last Last number in the set.
283 RTDECL(int64_t) RTRandAdvS64Ex(RTRAND hRand, int64_t i64First, int64_t i64Last) RT_NO_THROW;
/vbox/src/VBox/Runtime/common/rand/
H A Drand.cpp162 RTDECL(int64_t) RTRandS64Ex(int64_t i64First, int64_t i64Last) RT_NO_THROW
165 return RTRandAdvS64Ex(g_hRand, i64First, i64Last);
H A Drandadv.cpp164 RTDECL(int64_t) RTRandAdvS64Ex(RTRAND hRand, int64_t i64First, int64_t i64Last) RT_NO_THROW
172 return pThis->pfnGetU64(pThis, 0, i64Last - i64First) + i64First;
/vbox/src/VBox/Runtime/testcase/
H A DtstRand.cpp250 int64_t i64Last; member in struct:__anon16756
298 int64_t const iLast = s_aS64Tests[iTest].i64Last;
514 int64_t i64Last; member in struct:__anon16760
562 int64_t const iLast = s_aS64Tests[iTest].i64Last;

Completed in 46 milliseconds