Searched refs:fmax (Results 1 – 9 of 9) sorted by relevance
/bionic/libm/upstream-freebsd/lib/msun/src/ |
D | s_fmax.c | 38 fmax(double x, double y) in fmax() function 59 __weak_reference(fmax, fmaxl);
|
/bionic/libm/ |
D | fake_long_double.c | 28 long double fmaxl(long double a1, long double a2) { return fmax(a1, a2); } in fmaxl()
|
D | builtins.cpp | 59 double fmax(double x, double y) { return __builtin_fmax(x, y); } in fmax() function
|
D | libm.map.txt | 135 fmax;
|
/bionic/libc/include/ |
D | math.h | 295 double fmax(double __x, double __y) __attribute_const__; 297 long double fmaxl(long double __x, long double __y) __RENAME_LDBL(fmax, 3, 3) __attribute_const__;
|
/bionic/tests/headers/posix/ |
D | tgmath_h.c | 85 TGMATH2(fmax); in tgmath_h()
|
D | math_h.c | 199 FUNCTION(fmax, double (*f)(double, double)); in math_h()
|
/bionic/tests/ |
D | math_test.cpp | 897 TEST(MATH_TEST, fmax) { in TEST() argument 898 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, 10.0)); in TEST() 899 ASSERT_DOUBLE_EQ(12.0, fmax(12.0, nan(""))); in TEST() 900 ASSERT_DOUBLE_EQ(12.0, fmax(nan(""), 12.0)); in TEST() 1855 DoMathDataTest<1>(g_fmax_intel_data, fmax); in TEST()
|
/bionic/libc/tools/ |
D | posix-2013.txt | 272 fmax
|