• Home
  • Raw
  • Download

Lines Matching refs:check_all_in_range

25 template<typename Scalar> void check_all_in_range(Scalar x, Scalar y)  in check_all_in_range()  function
83 CALL_SUBTEST(check_all_in_range<signed char>(11,11)); in test_rand()
84 CALL_SUBTEST(check_all_in_range<signed char>(11,11+char_offset)); in test_rand()
85 CALL_SUBTEST(check_all_in_range<signed char>(-5,5)); in test_rand()
86 CALL_SUBTEST(check_all_in_range<signed char>(-11-char_offset,-11)); in test_rand()
87 CALL_SUBTEST(check_all_in_range<signed char>(-126,-126+char_offset)); in test_rand()
88 CALL_SUBTEST(check_all_in_range<signed char>(126-char_offset,126)); in test_rand()
89 CALL_SUBTEST(check_all_in_range<signed char>(-126,126)); in test_rand()
91 CALL_SUBTEST(check_all_in_range<short>(11,11)); in test_rand()
92 CALL_SUBTEST(check_all_in_range<short>(11,11+short_offset)); in test_rand()
93 CALL_SUBTEST(check_all_in_range<short>(-5,5)); in test_rand()
94 CALL_SUBTEST(check_all_in_range<short>(-11-short_offset,-11)); in test_rand()
95 CALL_SUBTEST(check_all_in_range<short>(-24345,-24345+short_offset)); in test_rand()
96 CALL_SUBTEST(check_all_in_range<short>(24345,24345+short_offset)); in test_rand()
98 CALL_SUBTEST(check_all_in_range<int>(11,11)); in test_rand()
99 CALL_SUBTEST(check_all_in_range<int>(11,11+g_repeat)); in test_rand()
100 CALL_SUBTEST(check_all_in_range<int>(-5,5)); in test_rand()
101 CALL_SUBTEST(check_all_in_range<int>(-11-g_repeat,-11)); in test_rand()
102 CALL_SUBTEST(check_all_in_range<int>(-673456,-673456+g_repeat)); in test_rand()
103 CALL_SUBTEST(check_all_in_range<int>(673456,673456+g_repeat)); in test_rand()
105 CALL_SUBTEST(check_all_in_range<long>(11,11)); in test_rand()
106 CALL_SUBTEST(check_all_in_range<long>(11,11+g_repeat)); in test_rand()
107 CALL_SUBTEST(check_all_in_range<long>(-5,5)); in test_rand()
108 CALL_SUBTEST(check_all_in_range<long>(-11-g_repeat,-11)); in test_rand()
109 CALL_SUBTEST(check_all_in_range<long>(-long_ref,-long_ref+g_repeat)); in test_rand()
110 CALL_SUBTEST(check_all_in_range<long>( long_ref, long_ref+g_repeat)); in test_rand()