Searched refs:i64First (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].
83 * @param i64First First 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].
280 * @param i64First First 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.cpp249 int64_t i64First; member in struct:__anon16756
297 int64_t const iFirst = s_aS64Tests[iTest].i64First;
513 int64_t i64First; member in struct:__anon16760
561 int64_t const iFirst = s_aS64Tests[iTest].i64First;

Completed in 85 milliseconds