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

/vbox/include/iprt/
H A Drand.h48 * Generate a 32-bit signed random number in the set [i32First..i32Last].
52 * @param i32Last Last number in the set.
54 RTDECL(int32_t) RTRandS32Ex(int32_t i32First, int32_t i32Last) RT_NO_THROW;
240 * Generate a 32-bit signed random number in the set [i32First..i32Last].
245 * @param i32Last Last number in the set.
247 RTDECL(int32_t) RTRandAdvS32Ex(RTRAND hRand, int32_t i32First, int32_t i32Last) RT_NO_THROW;
/vbox/src/VBox/Runtime/common/rand/
H A Drand.cpp130 RTDECL(int32_t) RTRandS32Ex(int32_t i32First, int32_t i32Last) RT_NO_THROW
133 return RTRandAdvS32Ex(g_hRand, i32First, i32Last);
H A Drandadv.cpp112 RTDECL(int32_t) RTRandAdvS32Ex(RTRAND hRand, int32_t i32First, int32_t i32Last) RT_NO_THROW
120 return pThis->pfnGetU32(pThis, 0, i32Last - i32First) + i32First;
/vbox/src/VBox/Runtime/testcase/
H A DtstRand.cpp192 int32_t i32Last; member in struct:__anon16755
229 int32_t const iLast = s_aS32Tests[iTest].i32Last;
456 int32_t i32Last; member in struct:__anon16759
493 int32_t const iLast = s_aS32Tests[iTest].i32Last;

Completed in 201 milliseconds