Lines Matching full:big
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()