Home | History | Annotate | Download | only in include

Lines Matching refs:fmin

201 floating_point fmin (arithmetic x, arithmetic y);
1135 // fmin
1137 inline _LIBCPP_INLINE_VISIBILITY float fmin(float __lcpp_x, float __lcpp_y) _NOEXCEPT {return fminf(__lcpp_x, __lcpp_y);}
1138 inline _LIBCPP_INLINE_VISIBILITY long double fmin(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return fminl(__lcpp_x, __lcpp_y);}
1148 fmin(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT
1153 return fmin((__result_type)__lcpp_x, (__result_type)__lcpp_y);