Lines Matching refs:f2
5 void test_floats(float f1, float f2) { in test_floats() argument
6 (void)__builtin_isgreater(f1, f2); in test_floats()
9 (void)__builtin_isgreaterequal(f1, f2); in test_floats()
12 (void)__builtin_isless(f1, f2); in test_floats()
15 (void)__builtin_islessequal(f1, f2); in test_floats()
18 (void)__builtin_islessgreater(f1, f2); in test_floats()
21 (void)__builtin_isunordered(f1, f2); in test_floats()
26 void test_doubles(double d1, double f2) { in test_doubles() argument
27 (void)__builtin_isgreater(d1, f2); in test_doubles()
30 (void)__builtin_isgreaterequal(d1, f2); in test_doubles()
33 (void)__builtin_isless(d1, f2); in test_doubles()
36 (void)__builtin_islessequal(d1, f2); in test_doubles()
39 (void)__builtin_islessgreater(d1, f2); in test_doubles()
42 (void)__builtin_isunordered(d1, f2); in test_doubles()
56 void test_mixed(double d1, float f2) { in test_mixed() argument
57 (void)__builtin_isgreater(d1, f2); in test_mixed()
61 (void)__builtin_isgreaterequal(d1, f2); in test_mixed()
65 (void)__builtin_isless(d1, f2); in test_mixed()
69 (void)__builtin_islessequal(d1, f2); in test_mixed()
73 (void)__builtin_islessgreater(d1, f2); in test_mixed()
77 (void)__builtin_isunordered(d1, f2); in test_mixed()