Lines Matching full:modf
110 floating_point modf (floating_point value, floating_point* iptr);
930 // modf
932 using ::modf;
936 inline _LIBCPP_INLINE_VISIBILITY float modf(float __x, float* __y) _NOEXCEPT {return modff(__x, __y);}
937 inline _LIBCPP_INLINE_VISIBILITY long double modf(long double __x, long double* __y) _NOEXCEPT {return modfl(__x, __y);}