| /freebsd/contrib/arm-optimized-routines/math/test/testcases/directed/ |
| H A D | acosh.tst | 1 ; acosh.tst 6 func=acosh op1=7ff80000.00000001 result=7ff80000.00000001 errno=0 7 func=acosh op1=fff80000.00000001 result=7ff80000.00000001 errno=0 8 func=acosh op1=7ff00000.00000001 result=7ff80000.00000001 errno=0 status=i 9 func=acosh op1=fff00000.00000001 result=7ff80000.00000001 errno=0 status=i 10 func=acosh op1=7ff00000.00000000 result=7ff00000.00000000 errno=0 11 func=acosh op1=3ff00000.00000000 result=00000000.00000000 errno=0 12 func=acosh op1=3fefffff.ffffffff result=7ff80000.00000001 errno=EDOM status=i 13 func=acosh op1=00000000.00000000 result=7ff80000.00000001 errno=EDOM status=i 14 func=acosh op1=80000000.00000000 result=7ff80000.00000001 errno=EDOM status=i [all …]
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/ |
| H A D | acosh_3u.c | 38 acosh (double x) in acosh() function 55 TEST_SIG (S, D, 1, acosh, 1.0, 10.0) 56 TEST_ULP (acosh, 2.19) 57 TEST_INTERVAL (acosh, 0, 1, 10000) 58 TEST_INTERVAL (acosh, 1, 2, 100000) 59 TEST_INTERVAL (acosh, 2, 0x1p511, 100000) 60 TEST_INTERVAL (acosh, 0x1p511, inf, 100000) 61 TEST_INTERVAL (acosh, -0, -inf, 10000)
|
| H A D | acoshf_2u8.c | 49 TEST_SIG (S, F, 1, acosh, 1.0, 10.0)
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/sve/ |
| H A D | acosh.c | 20 return sv_call_f64 (acosh, x, y, special); in special_case() 28 svfloat64_t SV_NAME_D1 (acosh) (svfloat64_t x, const svbool_t pg) in SV_NAME_D1() argument 44 TEST_SIG (SV, D, 1, acosh, 1.0, 10.0) 45 TEST_ULP (SV_NAME_D1 (acosh), 2.69) 46 TEST_DISABLE_FENV (SV_NAME_D1 (acosh)) 47 TEST_INTERVAL (SV_NAME_D1 (acosh), 1, 0x1p511, 90000) 48 TEST_INTERVAL (SV_NAME_D1 (acosh), 0x1p511, inf, 10000) 49 TEST_INTERVAL (SV_NAME_D1 (acosh), 0, 1, 1000) 50 TEST_INTERVAL (SV_NAME_D1 (acosh), -0, -inf, 10000)
|
| H A D | acoshf.c | 30 svfloat32_t SV_NAME_F1 (acosh) (svfloat32_t x, const svbool_t pg) in SV_NAME_F1() argument 44 TEST_SIG (SV, F, 1, acosh, 1.0, 10.0) 45 TEST_ULP (SV_NAME_F1 (acosh), 1.97) 46 TEST_DISABLE_FENV (SV_NAME_F1 (acosh)) 47 TEST_INTERVAL (SV_NAME_F1 (acosh), 0, 1, 500) 48 TEST_INTERVAL (SV_NAME_F1 (acosh), 1, 0x1p64, 100000) 49 TEST_INTERVAL (SV_NAME_F1 (acosh), 0x1p64, inf, 1000) 50 TEST_INTERVAL (SV_NAME_F1 (acosh), -0, -inf, 1000)
|
| /freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/ |
| H A D | acoshf.c | 39 float32x4_t VPCS_ATTR NOINLINE V_NAME_F1 (acosh) (float32x4_t x) in V_NAME_F1() argument 66 HALF_WIDTH_ALIAS_F1 (acosh) 68 TEST_SIG (V, F, 1, acosh, 1.0, 10.0) 70 TEST_ULP (V_NAME_F1 (acosh), 2.50) 72 TEST_ULP (V_NAME_F1 (acosh), 2.78) 74 TEST_DISABLE_FENV_IF_NOT (V_NAME_F1 (acosh), WANT_SIMD_EXCEPT) 75 TEST_INTERVAL (V_NAME_F1 (acosh), 0, 1, 500) 76 TEST_INTERVAL (V_NAME_F1 (acosh), 1, SquareLim, 100000) 77 TEST_INTERVAL (V_NAME_F1 (acosh), SquareLim, inf, 1000) 78 TEST_INTERVAL (V_NAME_F1 (acosh), -0, -inf, 1000)
|
| H A D | acosh.c | 28 return v_call_f64 (acosh, x, log1p_inline (y, d), special); in special_case() 36 VPCS_ATTR float64x2_t V_NAME_D1 (acosh) (float64x2_t x) in V_NAME_D1() argument 59 TEST_SIG (V, D, 1, acosh, 1.0, 10.0) 60 TEST_ULP (V_NAME_D1 (acosh), 2.53) 61 TEST_DISABLE_FENV_IF_NOT (V_NAME_D1 (acosh), WANT_SIMD_EXCEPT) 62 TEST_INTERVAL (V_NAME_D1 (acosh), 1, 0x1p511, 90000) 63 TEST_INTERVAL (V_NAME_D1 (acosh), 0x1p511, inf, 10000) 64 TEST_INTERVAL (V_NAME_D1 (acosh), 0, 1, 1000) 65 TEST_INTERVAL (V_NAME_D1 (acosh), -0, -inf, 10000)
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/__math/ |
| H A D | inverse_hyperbolic_functions.h | 26 inline _LIBCPP_HIDE_FROM_ABI float acosh(float __x) _NOEXCEPT { return __builtin_acoshf(__x); } in acosh() function 29 _LIBCPP_HIDE_FROM_ABI double acosh(double __x) _NOEXCEPT { in acosh() function 33 inline _LIBCPP_HIDE_FROM_ABI long double acosh(long double __x) _NOEXCEPT { return __builtin_acoshl… in acosh() function 36 inline _LIBCPP_HIDE_FROM_ABI double acosh(_A1 __x) _NOEXCEPT { in acosh() function
|
| /freebsd/lib/msun/src/ |
| H A D | e_acosh.c | 38 acosh(double x) in acosh() function 63 __weak_reference(acosh, acoshl);
|
| H A D | math.h | 268 double acosh(double);
|
| /freebsd/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_math_forward_declares.h | 33 __DEVICE__ double acosh(double); 34 __DEVICE__ float acosh(float); 202 using ::acosh;
|
| H A D | __clang_cuda_cmath.h | 242 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, acosh) 369 using ::acosh;
|
| H A D | __clang_hip_cmath.h | 206 __DEF_FUN1(float, acosh) 488 __HIP_OVERLOAD1(double, acosh) 658 using ::acosh;
|
| H A D | tgmath.h | 151 __tg_acosh(double __x) {return acosh(__x);} in __tg_acosh() 169 #undef acosh 170 #define acosh(__x) __tg_acosh(__tg_promote1((__x))(__x)) macro
|
| /freebsd/lib/msun/tests/ |
| H A D | invctrig_test.c | 300 CMPLXL(acosh(fabsl(nums[i])), in ATF_TC_BODY() 304 -acosh(fabsl(nums[i]))), 1); in ATF_TC_BODY() 307 acosh(fabsl(nums[i]))), 1); in ATF_TC_BODY()
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | complex.cppm | |
| H A D | complex.inc | 44 using std::acosh;
|
| /freebsd/include/ |
| H A D | tgmath.h | 144 #define acosh(x) __tg_full(x, acosh) macro
|
| /freebsd/tools/regression/include/tgmath/ |
| H A D | tgmath.c | 79 TGMACRO(acosh) in TGMACRO() 420 PASS_REAL_ARG_REAL_RET(acosh) && in main() 421 PASS_COMPLEX_ARG_COMPLEX_RET(acosh)); in main()
|
| /freebsd/lib/msun/ |
| H A D | Makefile | 182 MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 \ 199 MLINKS+=acosh.3 acoshf.3 acosh.3 acoshl.3
|
| H A D | Symbol.map | 10 acosh;
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | ScalarFuncs.def | 25 TLI_DEFINE_SCALAR_MASS_FUNC("acosh", "__xl_acosh")
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | math.h | 445 using std::__math::acosh;
|
| /freebsd/contrib/llvm-project/libcxx/include/ |
| H A D | math.h | 439 using std::__math::acosh;
|
| /freebsd/contrib/llvm-project/libcxx/modules/std.compat/ |
| H A D | cmath.inc | 42 using ::acosh _LIBCPP_USING_IF_EXISTS;
|