Searched refs:fmodl (Results 1 – 6 of 6) sorted by relevance
/ndk/sources/android/support/include/ |
D | math.h | 54 long double fmodl(long double, long double);
|
/ndk/sources/android/support/src/ |
D | math_support.c | 61 __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/ |
D | floatscan.c | 293 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/ |
D | cmath | 92 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/ |
D | math_h.pass.cpp | 102 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/ |
D | cmath.pass.cpp | 233 static_assert((std::is_same<decltype(std::fmodl(0,0)), long double>::value), ""); in test_fmod()
|