Searched refs:random_upto_biased (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/arm-optimized-routines/math/test/rtest/ |
H A D | random.h | 12 uint32 random_upto_biased(uint32 limit, int bias);
|
H A D | dotest.c | 1184 out[0] = highbound - random_upto_biased(highbound-lowbound, 8); in cases_biased() 1193 out[0] = highbound - random_upto_biased(highbound-lowbound, 8); in cases_biased_positive() 1201 out[0] = highbound - random_upto_biased(highbound-lowbound, 8); in cases_biased_float() 1425 0x3FE - random_upto_biased(0x431,2) : /* small */ in pow_cases() 1426 0x3FF + random_upto_biased(0x3FF,2)); /* big */ in pow_cases() 1444 n = 52 - random_upto_biased(51, 4); in pow_cases() 1475 out[2] = dmax - random_upto_biased(dmax-pmin, 10); in pow_cases() 1478 out[2] = (dmin - random_upto_biased(dmin-pmin, 10)) | 0x80000000; in pow_cases() 1515 0x7E - random_upto_biased(0x94,2) : /* small */ in pow_cases_float() 1516 0x7F + random_upto_biased(0x7f,2)); /* big */ in pow_cases_float() [all …]
|
H A D | random.c | 82 uint32 random_upto_biased(uint32 limit, int bias) { in random_upto_biased() function
|