Lines Matching defs:iFirst

228         int32_t const  iFirst = s_aS32Tests[iTest].i32First;
230 uint32_t const uRange = iLast - iFirst; AssertMsg(iLast >= iFirst, ("%d\n", iTest));
232 RTPrintf("tstRand: TESTING RTRandAdvS32Ex(,%#RI32, %#RI32) distribution... [div=%#RX32 range=%#RX32]\n", iFirst, iLast, uDivisor, uRange);
235 int32_t iRand = RTRandAdvS32Ex(hRand, iFirst, iLast);
236 CHECK_EXPR_MSG(iRand >= iFirst, ("%#RI32 %#RI32\n", iRand, iFirst));
238 uint32_t off = iRand - iFirst;
297 int64_t const iFirst = s_aS64Tests[iTest].i64First;
299 uint64_t const uRange = iLast - iFirst; AssertMsg(iLast >= iFirst, ("%d\n", iTest));
301 RTPrintf("tstRand: TESTING RTRandAdvS64Ex(,%#RI64, %#RI64) distribution... [div=%#RX64 range=%#016RX64]\n", iFirst, iLast, uDivisor, uRange);
304 int64_t iRand = RTRandAdvS64Ex(hRand, iFirst, iLast);
305 CHECK_EXPR_MSG(iRand >= iFirst, ("%#RI64 %#RI64\n", iRand, iFirst));
307 uint64_t off = iRand - iFirst;
492 int32_t const iFirst = s_aS32Tests[iTest].i32First;
494 uint32_t const uRange = iLast - iFirst; AssertMsg(iLast >= iFirst, ("%d\n", iTest));
496 RTPrintf("tstRand: TESTING RTRandS32Ex(%#RI32, %#RI32) distribution... [div=%#RX32 range=%#RX32]\n", iFirst, iLast, uDivisor, uRange);
499 int32_t iRand = RTRandS32Ex(iFirst, iLast);
500 CHECK_EXPR_MSG(iRand >= iFirst, ("%#RI32 %#RI32\n", iRand, iFirst));
502 uint32_t off = iRand - iFirst;
561 int64_t const iFirst = s_aS64Tests[iTest].i64First;
563 uint64_t const uRange = iLast - iFirst; AssertMsg(iLast >= iFirst, ("%d\n", iTest));
565 RTPrintf("tstRand: TESTING RTRandS64Ex(%#RI64, %#RI64) distribution... [div=%#RX64 range=%#016RX64]\n", iFirst, iLast, uDivisor, uRange);
568 int64_t iRand = RTRandS64Ex(iFirst, iLast);
569 CHECK_EXPR_MSG(iRand >= iFirst, ("%#RI64 %#RI64\n", iRand, iFirst));
571 uint64_t off = iRand - iFirst;