H A D | fmaxmin_test.c | 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() [all …]
|