Home
last modified time | relevance | path

Searched refs:random_upto_biased (Results 1 – 3 of 3) sorted by relevance

/external/arm-optimized-routines/test/rtest/
Drandom.h12 uint32 random_upto_biased(uint32 limit, int bias);
Ddotest.c1141 out[0] = highbound - random_upto_biased(highbound-lowbound, 8); in cases_biased()
1150 out[0] = highbound - random_upto_biased(highbound-lowbound, 8); in cases_biased_positive()
1158 out[0] = highbound - random_upto_biased(highbound-lowbound, 8); in cases_biased_float()
1382 0x3FE - random_upto_biased(0x431,2) : /* small */ in pow_cases()
1383 0x3FF + random_upto_biased(0x3FF,2)); /* big */ in pow_cases()
1401 n = 52 - random_upto_biased(51, 4); in pow_cases()
1432 out[2] = dmax - random_upto_biased(dmax-pmin, 10); in pow_cases()
1435 out[2] = (dmin - random_upto_biased(dmin-pmin, 10)) | 0x80000000; in pow_cases()
1472 0x7E - random_upto_biased(0x94,2) : /* small */ in pow_cases_float()
1473 0x7F + random_upto_biased(0x7f,2)); /* big */ in pow_cases_float()
[all …]
Drandom.c82 uint32 random_upto_biased(uint32 limit, int bias) { in random_upto_biased() function