Lines Matching refs:fmax
207 floating_point fmax (arithmetic x, arithmetic y);
1195 // fmax
1197 inline _LIBCPP_INLINE_VISIBILITY float fmax(float __lcpp_x, float __lcpp_y) _NOEXCEPT {return ::fmaxf(__lcpp_x, __lcpp_y);}
1198 inline _LIBCPP_INLINE_VISIBILITY long double fmax(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::fmaxl(__lcpp_x, __lcpp_y);}
1208 fmax(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT
1213 return ::fmax((__result_type)__lcpp_x, (__result_type)__lcpp_y);