Home
last modified time | relevance | path

Searched refs:fmodl (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/android/support/include/
Dmath.h54 long double fmodl(long double, long double);
/ndk/sources/android/support/src/
Dmath_support.c61 __attribute__((weak)) long double fmodl(long double x, long double y) { return fmod((double)x, (dou… in fmodl() function
/ndk/sources/android/support/src/wcstox/
Dfloatscan.c293 frac = fmodl(y, scalbn(1, LDBL_MANT_DIG-bits)); in decfloat()
311 if (LDBL_MANT_DIG-bits >= 2 && !fmodl(frac, 1)) in decfloat()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath92 long double fmodl(long double x, long double y);
847 …E_VISIBILITY long double fmod(long double __x, long double __y) _NOEXCEPT {return fmodl(__x, __y);}
1627 using ::fmodl;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp102 static_assert((std::is_same<decltype(fmodl(0,0)), long double>::value), ""); in test_fmod()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp233 static_assert((std::is_same<decltype(std::fmodl(0,0)), long double>::value), ""); in test_fmod()