Lines Matching refs:lowbound
734 static void complex_cases_biased(uint32 *out, uint32 lowbound,
736 cases_biased(out,lowbound,highbound);
737 cases_biased(out+2,lowbound,highbound);
740 static void complex_cases_biased_float(uint32 *out, uint32 lowbound,
742 cases_biased_float(out,lowbound,highbound);
743 cases_biased_float(out+2,lowbound,highbound);
746 static void complex_cases_uniform(uint32 *out, uint32 lowbound,
748 cases_uniform(out,lowbound,highbound);
749 cases_uniform(out+2,lowbound,highbound);
752 static void complex_cases_uniform_float(uint32 *out, uint32 lowbound,
754 cases_uniform_float(out,lowbound,highbound);
755 cases_uniform(out+2,lowbound,highbound);
758 static void complex_pow_cases(uint32 *out, uint32 lowbound,
783 static void complex_pow_cases_float(uint32 *out, uint32 lowbound,
795 static void complex_arithmetic_cases(uint32 *out, uint32 lowbound,
803 static void complex_arithmetic_cases_float(uint32 *out, uint32 lowbound,
1138 static void cases_biased(uint32 *out, uint32 lowbound,
1141 out[0] = highbound - random_upto_biased(highbound-lowbound, 8);
1147 static void cases_biased_positive(uint32 *out, uint32 lowbound,
1150 out[0] = highbound - random_upto_biased(highbound-lowbound, 8);
1155 static void cases_biased_float(uint32 *out, uint32 lowbound,
1158 out[0] = highbound - random_upto_biased(highbound-lowbound, 8);
1198 static void cases_uniform(uint32 *out, uint32 lowbound,
1201 out[0] = highbound - random_upto(highbound-lowbound);
1206 static void cases_uniform_float(uint32 *out, uint32 lowbound,
1209 out[0] = highbound - random_upto(highbound-lowbound);
1215 static void cases_uniform_positive(uint32 *out, uint32 lowbound,
1218 out[0] = highbound - random_upto(highbound-lowbound);
1222 static void cases_uniform_float_positive(uint32 *out, uint32 lowbound,
1225 out[0] = highbound - random_upto(highbound-lowbound);