Lines Matching refs:CALL_SUBTEST

64     CALL_SUBTEST(check_in_range<float>(10,11));  in test_rand()
65 CALL_SUBTEST(check_in_range<float>(1.24234523,1.24234523)); in test_rand()
66 CALL_SUBTEST(check_in_range<float>(-1,1)); in test_rand()
67 CALL_SUBTEST(check_in_range<float>(-1432.2352,-1432.2352)); in test_rand()
69 CALL_SUBTEST(check_in_range<double>(10,11)); in test_rand()
70 CALL_SUBTEST(check_in_range<double>(1.24234523,1.24234523)); in test_rand()
71 CALL_SUBTEST(check_in_range<double>(-1,1)); in test_rand()
72 CALL_SUBTEST(check_in_range<double>(-1432.2352,-1432.2352)); in test_rand()
74 CALL_SUBTEST(check_in_range<int>(0,-1)); in test_rand()
75 CALL_SUBTEST(check_in_range<short>(0,-1)); in test_rand()
76 CALL_SUBTEST(check_in_range<long>(0,-1)); in test_rand()
77 CALL_SUBTEST(check_in_range<int>(-673456,673456)); in test_rand()
78 CALL_SUBTEST(check_in_range<int>(-RAND_MAX+10,RAND_MAX-10)); in test_rand()
79 CALL_SUBTEST(check_in_range<short>(-24345,24345)); in test_rand()
80 CALL_SUBTEST(check_in_range<long>(-long_ref,long_ref)); in test_rand()
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()
112 CALL_SUBTEST(check_histogram<int>(-5,5,11)); in test_rand()
114 CALL_SUBTEST(check_histogram<int>(-3333,-3333+bins*(3333/bins)-1,bins)); in test_rand()
116 CALL_SUBTEST(check_histogram<int>(-RAND_MAX+10,-RAND_MAX+10+bins*(RAND_MAX/bins)-1,bins)); in test_rand()
117CALL_SUBTEST(check_histogram<int>(-RAND_MAX+10,-int64(RAND_MAX)+10+bins*(2*int64(RAND_MAX)/bins)-1… in test_rand()