Searched defs:fdim (Results 1 – 4 of 4) sorted by relevance
/freebsd-src/contrib/llvm-project/libcxx/include/__math/ |
H A D | fdim.h | 26 inline _LIBCPP_HIDE_FROM_ABI float fdim(float __x, float __y) _NOEXCEPT { return __builtin_fdimf(__x, __y); } in fdim() function 29 _LIBCPP_HIDE_FROM_ABI double fdim(double __x, double __y) _NOEXCEPT { in fdim() function 33 inline _LIBCPP_HIDE_FROM_ABI long double fdim(long double __x, long double __y) _NOEXCEPT { in fdim() function 38 inline _LIBCPP_HIDE_FROM_ABI typename __promote<_A1, _A2>::type fdim(_A1 __x, _A2 __y) _NOEXCEPT { in fdim() function
|
/freebsd-src/include/ |
H A D | tgmath.h | 171 #define fdim(x, y) __tg_simple2(x, y, fdim) macro
|
/freebsd-src/contrib/llvm-project/clang/lib/Headers/ |
H A D | __clang_cuda_math.h | 113 __DEVICE__ double fdim(double __a, double __b) { return __nv_fdim(__a, __b); } in fdim() function
|
H A D | tgmath.h | 704 #define fdim(__x, __y) __tg_fdim(__tg_promote2((__x), (__y))(__x), \ macro
|