Searched defs:fmod (Results 1 – 7 of 7) sorted by relevance
/llvm-project/libcxx/include/__math/ |
H A D | modulo.h | 28 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.h | 55 __DEVICE__ float fmod(float __x, float __y) { return ::fmodf(__x, __y); } in fmod() function
|
H A D | __clang_cuda_math.h | 135 __DEVICE__ double fmod(double __a, double __b) { return __nv_fmod(__a, __b); } fmod() function
|
H A D | tgmath.h | 798 #define fmod(__x, __y) __tg_fmod(__tg_promote2((__x), (__y))(__x), \ macro
|
/llvm-project/libcxx/test/std/numerics/c.math/ |
H A D | cmath.pass.cpp | 49 Ambiguous fmod(Ambiguous, Ambiguous){ return Ambiguous(); } fmod() function [all...] |
/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
H A D | math_h.pass.cpp | 49 Ambiguous fmod(Ambiguous, Ambiguous){ return Ambiguous(); } in fmod() function
|
/llvm-project/libc/utils/MPFRWrapper/ |
H A D | MPFRUtils.cpp | 353 MPFRNumber fmod(const MPFRNumber &b) { fmod() function in LIBC_NAMESPACE::testing::mpfr::MPFRNumber
|