Lines Matching +full:big +full:-
1 /*-
37 #include "test-utils.h"
58 testall_r(long double big, long double small, int rmode) in testall_r() argument
60 long double expected_max = isnan(big) ? small : big; in testall_r()
61 long double expected_min = isnan(small) ? big : small; in testall_r()
62 TEST(fmaxf, float, big, small, expected_max, rmode); in testall_r()
63 TEST(fmaxf, float, small, big, expected_max, rmode); in testall_r()
64 TEST(fmax, double, big, small, expected_max, rmode); in testall_r()
65 TEST(fmax, double, small, big, expected_max, rmode); in testall_r()
66 TEST(fmaxl, long double, big, small, expected_max, rmode); in testall_r()
67 TEST(fmaxl, long double, small, big, expected_max, rmode); in testall_r()
68 TEST(fminf, float, big, small, expected_min, rmode); in testall_r()
69 TEST(fminf, float, small, big, expected_min, rmode); in testall_r()
70 TEST(fmin, double, big, small, expected_min, rmode); in testall_r()
71 TEST(fmin, double, small, big, expected_min, rmode); in testall_r()
72 TEST(fminl, long double, big, small, expected_min, rmode); in testall_r()
73 TEST(fminl, long double, small, big, expected_min, rmode); in testall_r()
79 * The input 'big' must be >= 'small'.
82 testall(long double big, long double small) in testall() argument
91 testall_r(big, small, rmodes[i]); in testall()
104 testall(42.0, nextafterf(42.0, -INFINITY)); in ATF_TC_BODY()
115 testall(-5.0, -5.0); in ATF_TC_BODY()
121 testall(-3.0, -4.0); in ATF_TC_BODY()
144 testall(-3.0, -INFINITY); in ATF_TC_BODY()
150 testall(3.0, -INFINITY); in ATF_TC_BODY()
163 testall(0.0, -0.0); in ATF_TC_BODY()