| /freebsd-13-stable/contrib/netbsd-tests/lib/libm/ |
| HD | t_asin.c | 63 if (isnan(asin(x)) == 0) in ATF_TC_BODY() 77 if (isnan(asin(x)) == 0) in ATF_TC_BODY() 91 if (isnan(asin(x)) == 0) in ATF_TC_BODY() 108 if (isnan(asin(x[i])) == 0) in ATF_TC_BODY() 128 if (!(fabs((asin(x) - y)/y) <= eps)) in ATF_TC_BODY() 143 double y = asin(x); in ATF_TC_BODY() 158 double y = asin(x); in ATF_TC_BODY()
|
| /freebsd-13-stable/lib/msun/tests/ |
| HD | invtrig_test.c | 129 testall(asin, 0.0, 0.0, 0); in ATF_TC_BODY() 132 testall(asin, -0.0, -0.0, 0); in ATF_TC_BODY() 136 testall(asin, INFINITY, NAN, FE_INVALID); in ATF_TC_BODY() 139 testall(asin, -INFINITY, NAN, FE_INVALID); in ATF_TC_BODY() 143 testall(asin, NAN, NAN, 0); in ATF_TC_BODY() 243 testall(asin, 1.0, pi / 2, FE_INEXACT); in ATF_TC_BODY() 246 testall(asin, -1.0, -pi / 2, FE_INEXACT); in ATF_TC_BODY() 256 testall_tol(asin, sqrtl(2) / 2, pi / 4, 1, FE_INEXACT); in ATF_TC_BODY() 258 testall_tol(asin, -sqrtl(2) / 2, -pi / 4, 1, FE_INEXACT); in ATF_TC_BODY() 261 testall_tol(asin, sqrtl(3) / 2, pio3, 1, FE_INEXACT); in ATF_TC_BODY() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/include/__math/ |
| HD | inverse_trigonometric_functions.h | 45 inline _LIBCPP_HIDE_FROM_ABI float asin(float __x) _NOEXCEPT { return __builtin_asinf(__x); } in asin() function 48 _LIBCPP_HIDE_FROM_ABI double asin(double __x) _NOEXCEPT { in asin() function 52 inline _LIBCPP_HIDE_FROM_ABI long double asin(long double __x) _NOEXCEPT { return __builtin_asinl(_… in asin() function 55 inline _LIBCPP_HIDE_FROM_ABI double asin(_A1 __x) _NOEXCEPT { in asin() function
|
| /freebsd-13-stable/lib/msun/src/ |
| HD | e_asin.c | 69 asin(double x) in asin() function 114 __weak_reference(asin, asinl);
|
| HD | math.h | 228 double asin(double);
|
| HD | catrig.c | 325 ry = asin(B); in casinh()
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/ |
| HD | __clang_cuda_math_forward_declares.h | 35 __DEVICE__ double asin(double); 36 __DEVICE__ float asin(float); 203 using ::asin;
|
| HD | __clang_cuda_cmath.h | 46 __DEVICE__ float asin(float __x) { return ::asinf(__x); } in asin() function 243 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(double, asin) 370 using ::asin;
|
| HD | __clang_hip_cmath.h | 207 __DEF_FUN1(float, asin) 483 __HIP_OVERLOAD1(double, asin) 653 using ::asin;
|
| HD | tgmath.h | 93 __tg_asin(double __x) {return asin(__x);} in __tg_asin() 111 #undef asin 112 #define asin(__x) __tg_asin(__tg_promote1((__x))(__x)) macro
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| HD | VecFuncs.def | 79 TLI_DEFINE_VECFUNC("asin", "_simd_asin_d2", FIXED(2), "_ZGV_LLVM_N2v") 80 TLI_DEFINE_VECFUNC("llvm.asin.f64", "_simd_asin_d2", FIXED(2), "_ZGV_LLVM_N2v") 82 TLI_DEFINE_VECFUNC("llvm.asin.f32", "_simd_asin_f4", FIXED(4), "_ZGV_LLVM_N4v") 277 TLI_DEFINE_VECFUNC("asin", "__asind2", FIXED(2), "_ZGV_LLVM_N2v") 519 TLI_DEFINE_VECFUNC("asin", "_ZGVnN2v_asin", FIXED(2), "_ZGV_LLVM_N2v") 520 TLI_DEFINE_VECFUNC("llvm.asin.f64", "_ZGVnN2v_asin", FIXED(2), "_ZGV_LLVM_N2v") 624 TLI_DEFINE_VECFUNC("llvm.asin.f32", "_ZGVnN4v_asinf", FIXED(4), "_ZGV_LLVM_N4v") 730 TLI_DEFINE_VECFUNC("asin", "_ZGVsMxv_asin", SCALABLE(2), MASKED, "_ZGVsMxv") 732 TLI_DEFINE_VECFUNC("llvm.asin.f64", "_ZGVsMxv_asin", SCALABLE(2), MASKED, "_ZGVsMxv") 733 TLI_DEFINE_VECFUNC("llvm.asin.f32", "_ZGVsMxv_asinf", SCALABLE(4), MASKED, "_ZGVsMxv") [all …]
|
| HD | ScalarFuncs.def | 30 TLI_DEFINE_SCALAR_MASS_FUNC("asin", "__xl_asin")
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/hlsl/ |
| HD | hlsl_intrinsics.h | 372 half asin(half); 374 half2 asin(half2); 376 half3 asin(half3); 378 half4 asin(half4); 382 float asin(float); 384 float2 asin(float2); 386 float3 asin(float3); 388 float4 asin(float4);
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/modules/std/ |
| HD | valarray.inc | 47 using std::asin;
|
| HD | complex.inc | 41 using std::asin;
|
| /freebsd-13-stable/include/ |
| HD | tgmath.h | 142 #define asin(x) __tg_full(x, asin) macro
|
| /freebsd-13-stable/tools/regression/include/tgmath/ |
| HD | tgmath.c | 77 TGMACRO(asin) in TGMACRO() argument 412 PASS_REAL_ARG_REAL_RET(asin) && in main() 413 PASS_COMPLEX_ARG_COMPLEX_RET(asin)); in main()
|
| /freebsd-13-stable/lib/msun/ |
| HD | Makefile | 164 MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 \ 180 MLINKS+=asin.3 asinf.3 asin.3 asinl.3
|
| HD | Symbol.map | 12 asin;
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/include/ |
| HD | math.h | 446 using std::__math::asin;
|
| HD | cmath | 53 floating_point asin (arithmetic x); 368 using ::asin _LIBCPP_USING_IF_EXISTS;
|
| /freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/IR/ |
| HD | ConstrainedOps.def | 73 DAG_FUNCTION(asin, 1, 1, experimental_constrained_asin, FASIN)
|
| /freebsd-13-stable/contrib/llvm-project/libcxx/modules/std.compat/ |
| HD | cmath.inc | 18 using ::asin _LIBCPP_USING_IF_EXISTS;
|
| /freebsd-13-stable/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/ |
| HD | cmath | 95 __DEVICE__ float asin(float __x) { return ::asinf(__x); }
|
| /freebsd-13-stable/usr.bin/calendar/ |
| HD | sunpos.c | 51 #define ASIN(x) (R2D(asin(x)))
|