Home
last modified time | relevance | path

Searched defs:fmod (Results 1 – 7 of 7) sorted by relevance

/llvm-project/libcxx/include/__math/
H A Dmodulo.h28 inline _LIBCPP_HIDE_FROM_ABI float fmod(float __x, float __y) _NOEXCEPT { return __builtin_fmodf(__… in fmod() function
31 _LIBCPP_HIDE_FROM_ABI double fmod(double __x, double __y) _NOEXCEPT { in fmod() function
35 inline _LIBCPP_HIDE_FROM_ABI long double fmod(long double __x, long double __y) _NOEXCEPT { in fmod() function
40 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fmod(_A1 __x, _A2 __y) _NOEXCEPT { in fmod() function
/llvm-project/clang/lib/Headers/
H A D__clang_cuda_cmath.h55 __DEVICE__ float fmod(float __x, float __y) { return ::fmodf(__x, __y); } in fmod() function
H A D__clang_cuda_math.h135 __DEVICE__ double fmod(double __a, double __b) { return __nv_fmod(__a, __b); } fmod() function
H A Dtgmath.h798 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
/llvm-project/libcxx/test/std/numerics/c.math/
H A Dcmath.pass.cpp49 Ambiguous fmod(Ambiguous, Ambiguous){ return Ambiguous(); } fmod() function
[all...]
/llvm-project/libcxx/test/std/depr/depr.c.headers/
H A Dmath_h.pass.cpp49 Ambiguous fmod(Ambiguous, Ambiguous){ return Ambiguous(); } in fmod() function
/llvm-project/libc/utils/MPFRWrapper/
H A DMPFRUtils.cpp353 MPFRNumber fmod(const MPFRNumber &b) { fmod() function in LIBC_NAMESPACE::testing::mpfr::MPFRNumber