Searched refs:fdim (Results 1 - 12 of 12) sorted by relevance

/freebsd-13-stable/lib/msun/src/
H A Ds_fdim.c46 DECL(double, fdim)
H A Dmath.h313 double fdim(double, double);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h67 __DEVICE__ double fdim(double, double);
68 __DEVICE__ float fdim(float, float);
216 using ::fdim;
H A D__clang_cuda_cmath.h217 __CUDA_CLANG_FN_INTEGER_OVERLOAD_2(double, fdim);
344 using ::fdim;
H A Dtgmath.h689 // fdim
697 __tg_fdim(double __x, double __y) {return fdim(__x, __y);}
703 #undef fdim macro
704 #define fdim(__x, __y) __tg_fdim(__tg_promote2((__x), (__y))(__x), \ macro
H A D__clang_cuda_math.h113 __DEVICE__ double fdim(double __a, double __b) { return __nv_fdim(__a, __b); } function
H A D__clang_hip_math.h611 inline double fdim(double __x, double __y) { return __ocml_fdim_f64(__x, __y); } function
1089 __DEF_FUN2(double, fdim);
H A Dopencl-c.h7157 float __ovld __cnfn fdim(float x, float y);
7158 float2 __ovld __cnfn fdim(float2 x, float2 y);
7159 float3 __ovld __cnfn fdim(float3 x, float3 y);
7160 float4 __ovld __cnfn fdim(float4 x, float4 y);
7161 float8 __ovld __cnfn fdim(float8 x, float8 y);
7162 float16 __ovld __cnfn fdim(float16 x, float16 y);
7164 double __ovld __cnfn fdim(double x, double y);
7165 double2 __ovld __cnfn fdim(double2 x, double2 y);
7166 double3 __ovld __cnfn fdim(double3 x, double3 y);
7167 double4 __ovld __cnfn fdim(double
[all...]
/freebsd-13-stable/lib/msun/
H A DMakefile158 exp.3 fabs.3 fdim.3 \
202 MLINKS+=fdim.3 fdimf.3 fdim.3 fdiml.3
/freebsd-13-stable/include/
H A Dtgmath.h173 #define fdim(x, y) __tg_simple2(x, y, fdim) macro
/freebsd-13-stable/tools/regression/include/tgmath/
H A Dtgmath.c112 TGMACRO_REAL_REAL(fdim)
502 PRINT("fdim",
503 PASS_REAL_REAL_ARG_REAL_RET(fdim));
/freebsd-13-stable/contrib/llvm-project/libcxx/include/
H A Dmath.h188 floating_point fdim (arithmetic x, arithmetic y);
1167 // fdim
1169 inline _LIBCPP_INLINE_VISIBILITY float fdim(float __lcpp_x, float __lcpp_y) _NOEXCEPT {return ::fdimf(__lcpp_x, __lcpp_y);}
1170 inline _LIBCPP_INLINE_VISIBILITY long double fdim(long double __lcpp_x, long double __lcpp_y) _NOEXCEPT {return ::fdiml(__lcpp_x, __lcpp_y);}
1180 fdim(_A1 __lcpp_x, _A2 __lcpp_y) _NOEXCEPT
1185 return ::fdim((__result_type)__lcpp_x, (__result_type)__lcpp_y);

Completed in 112 milliseconds