Searched defs:modf (Results 1 – 7 of 7) sorted by relevance
/llvm-project/libcxx/include/__math/ |
H A D | modulo.h | 48 inline _LIBCPP_HIDE_FROM_ABI float modf(float __x, float* __y) _NOEXCEPT { return __builtin_modff(_… in modf() function 51 _LIBCPP_HIDE_FROM_ABI double modf(double __x, double* __y) _NOEXCEPT { in modf() function 55 inline _LIBCPP_HIDE_FROM_ABI long double modf(long double __x, long double* __y) _NOEXCEPT { in modf() function
|
/llvm-project/libc/src/__support/FPUtil/ |
H A D | ManipulationFunctions.h | 46 LIBC_INLINE T modf(T x, T &iptr) { modf() function
|
/llvm-project/clang/lib/Headers/ |
H A D | __clang_hip_cmath.h | 149 __DEVICE__ __CONSTEXPR__ float modf(float __x, float *__iptr) { in modf() function
|
H A D | __clang_cuda_cmath.h | 160 __DEVICE__ float modf(float __x, float *__iptr) { return ::modff(__x, __iptr); } in modf() function
|
H A D | __clang_cuda_math.h | 198 __DEVICE__ double modf(double __a, double *__b) { return __nv_modf(__a, __b); } modf() function
|
/llvm-project/libcxx/test/std/numerics/c.math/ |
H A D | cmath.pass.cpp | 54 Ambiguous modf(Ambiguous, Ambiguous*){ return Ambiguous(); } modf() function
|
/llvm-project/libcxx/test/std/depr/depr.c.headers/ |
H A D | math_h.pass.cpp | 54 Ambiguous modf(Ambiguous, Ambiguous*){ return Ambiguous(); } in modf() function
|