Home
last modified time | relevance | path

Searched refs:atanh (Results 1 – 25 of 48) sorted by relevance

12

/freebsd/contrib/arm-optimized-routines/math/test/testcases/directed/
H A Datanh.tst1 ; atanh.tst
6 func=atanh op1=7ff80000.00000001 result=7ff80000.00000001 errno=0
7 func=atanh op1=fff80000.00000001 result=7ff80000.00000001 errno=0
8 func=atanh op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i
9 func=atanh op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i
10 func=atanh op1=7ff00000.00000000 result=7ff80000.00000001 errno=EDOM status=i
11 func=atanh op1=fff00000.00000000 result=7ff80000.00000001 errno=EDOM status=i
12 func=atanh op1=3ff00000.00000001 result=7ff80000.00000001 errno=EDOM status=i
13 func=atanh op1=bff00000.00000001 result=7ff80000.00000001 errno=EDOM status=i
14 func=atanh op1=3ff00000.00000000 result=7ff00000.00000000 errno=ERANGE status=z
[all …]
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Datanh.c21 return sv_call_f64 (atanh, x, y, special); in special_case()
28 svfloat64_t SV_NAME_D1 (atanh) (svfloat64_t x, const svbool_t pg) in SV_NAME_D1() argument
52 TEST_SIG (SV, D, 1, atanh, -1.0, 1.0)
53 TEST_ULP (SV_NAME_D1 (atanh), 3.32)
54 TEST_DISABLE_FENV (SV_NAME_D1 (atanh))
55 TEST_SYM_INTERVAL (SV_NAME_D1 (atanh), 0, 0x1p-23, 10000)
56 TEST_SYM_INTERVAL (SV_NAME_D1 (atanh), 0x1p-23, 1, 90000)
57 TEST_SYM_INTERVAL (SV_NAME_D1 (atanh), 1, inf, 100)
61 TEST_CONTROL_VALUE (SV_NAME_D1 (atanh), 0)
H A Datanhf.c30 svfloat32_t SV_NAME_F1 (atanh) (svfloat32_t x, const svbool_t pg) in SV_NAME_F1() argument
51 TEST_SIG (SV, F, 1, atanh, -1.0, 1.0)
52 TEST_ULP (SV_NAME_F1 (atanh), 1.50)
53 TEST_DISABLE_FENV (SV_NAME_F1 (atanh))
54 TEST_SYM_INTERVAL (SV_NAME_F1 (atanh), 0, 0x1p-12, 1000)
55 TEST_SYM_INTERVAL (SV_NAME_F1 (atanh), 0x1p-12, 1, 20000)
56 TEST_SYM_INTERVAL (SV_NAME_F1 (atanh), 1, inf, 1000)
60 TEST_CONTROL_VALUE (SV_NAME_F1 (atanh), 0)
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Datanh.c29 return v_call_f64 (atanh, vbslq_f64 (d->sign_mask, halfsign, x), in special_case()
38 float64x2_t V_NAME_D1 (atanh) (float64x2_t x) in V_NAME_D1() argument
66 TEST_SIG (V, D, 1, atanh, -1.0, 1.0)
67 TEST_DISABLE_FENV_IF_NOT (V_NAME_D1 (atanh), WANT_SIMD_EXCEPT)
68 TEST_ULP (V_NAME_D1 (atanh), 3.32)
69 TEST_SYM_INTERVAL (V_NAME_D1 (atanh), 0, 0x1p-23, 10000)
70 TEST_SYM_INTERVAL (V_NAME_D1 (atanh), 0x1p-23, 1, 90000)
71 TEST_SYM_INTERVAL (V_NAME_D1 (atanh), 1, inf, 100)
75 TEST_CONTROL_VALUE (V_NAME_D1 (atanh), 0)
H A Datanhf.c44 float32x4_t VPCS_ATTR NOINLINE V_NAME_F1 (atanh) (float32x4_t x) in V_NAME_F1() argument
79 HALF_WIDTH_ALIAS_F1 (atanh)
81 TEST_SIG (V, F, 1, atanh, -1.0, 1.0)
82 TEST_ULP (V_NAME_F1 (atanh), 2.44)
83 TEST_DISABLE_FENV_IF_NOT (V_NAME_F1 (atanh), WANT_SIMD_EXCEPT)
84 TEST_SYM_INTERVAL (V_NAME_F1 (atanh), 0, 0x1p-12, 500)
85 TEST_SYM_INTERVAL (V_NAME_F1 (atanh), 0x1p-12, 1, 200000)
86 TEST_SYM_INTERVAL (V_NAME_F1 (atanh), 1, inf, 1000)
90 TEST_CONTROL_VALUE (V_NAME_F1 (atanh), 0)
/freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/
H A Datanh_3u.c62 atanh (double x) in atanh() function
79 TEST_SIG (S, D, 1, atanh, -1.0, 1.0)
80 TEST_ULP (atanh, 3.00)
81 TEST_SYM_INTERVAL (atanh, 0, 0x1p-23, 10000)
82 TEST_SYM_INTERVAL (atanh, 0x1p-23, 1, 90000)
83 TEST_SYM_INTERVAL (atanh, 1, inf, 100)
H A Datanhf_3u1.c82 TEST_SIG (S, F, 1, atanh, -1.0, 1.0)
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/__math/
H A Dinverse_hyperbolic_functions.h58 inline _LIBCPP_HIDE_FROM_ABI float atanh(float __x) _NOEXCEPT { return __builtin_atanhf(__x); } in atanh() function
61 _LIBCPP_HIDE_FROM_ABI double atanh(double __x) _NOEXCEPT { in atanh() function
65 inline _LIBCPP_HIDE_FROM_ABI long double atanh(long double __x) _NOEXCEPT { return __builtin_atanhl… in atanh() function
68 inline _LIBCPP_HIDE_FROM_ABI double atanh(_A1 __x) _NOEXCEPT { in atanh() function
/freebsd/lib/msun/src/
H A De_atanh.c41 atanh(double x) in atanh() function
63 __weak_reference(atanh, atanhl);
/freebsd/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_math_forward_declares.h43 __DEVICE__ double atanh(double);
44 __DEVICE__ float atanh(float);
207 using ::atanh;
H A D__clang_cuda_cmath.h247 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, atanh)
374 using ::atanh;
H A D__clang_hip_cmath.h211 __DEF_FUN1(float, atanh)
493 __HIP_OVERLOAD1(double, atanh)
663 using ::atanh;
H A Dtgmath.h209 __tg_atanh(double __x) {return atanh(__x);} in __tg_atanh()
227 #undef atanh
228 #define atanh(__x) __tg_atanh(__tg_promote1((__x))(__x)) macro
/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dcomplex.cppm
H A Dcomplex.inc46 using std::atanh;
/freebsd/include/
H A Dtgmath.h146 #define atanh(x) __tg_full(x, atanh) macro
/freebsd/tools/regression/include/tgmath/
H A Dtgmath.c81 TGMACRO(atanh) in TGMACRO()
428 PASS_REAL_ARG_REAL_RET(atanh) && in main()
429 PASS_COMPLEX_ARG_COMPLEX_RET(atanh)); in main()
/freebsd/lib/msun/
H A DMakefile182 MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 \
203 MLINKS+=atanh.3 atanhf.3 atanh.3 atanhl.3
H A DSymbol.map16 atanh;
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DScalarFuncs.def46 TLI_DEFINE_SCALAR_MASS_FUNC("atanh", "__xl_atanh")
/freebsd/lib/msun/tests/
H A Dinvctrig_test.c297 testall_tol(catanh, z, CMPLXL(atanh(nums[i]), 0.0), 1); in ATF_TC_BODY()
309 CMPLXL(atanh(1 / nums[i]), pi / 2), 1); in ATF_TC_BODY()
/freebsd/contrib/llvm-project/libcxx/include/__cxx03/
H A Dmath.h450 using std::__math::atanh;
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmath.h444 using std::__math::atanh;
/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h240 __DEVICE__ std::complex<_Tp> atanh(const std::complex<_Tp> &__x) { in atanh() function
365 std::complex<_Tp> __z = atanh(complex<_Tp>(-__x.imag(), __x.real())); in atan()
/freebsd/contrib/llvm-project/libcxx/modules/std.compat/
H A Dcmath.inc50 using ::atanh _LIBCPP_USING_IF_EXISTS;

12