Searched refs:asin (Results 1 - 25 of 69) sorted by relevance

123

/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/
H A Dasin.c26 mpfr_asin (mpfr_ptr asin, mpfr_srcptr x, mpfr_rnd_t rnd_mode) argument
36 ("asin[%#R]=%R inexact=%d", asin, asin, inexact));
43 MPFR_SET_NAN (asin);
49 MPFR_SET_ZERO (asin);
50 MPFR_SET_SAME_SIGN (asin, x);
55 /* asin(x) = x + x^3/6 + ... so the error is < 2^(3*EXP(x)-2) */
56 MPFR_FAST_COMPUTE_IF_SMALL_INPUT (asin, x, -2 * MPFR_GET_EXP (x), 2, 1,
71 if (compared > 0) /* asin(
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.dg/
H A Dbuiltins-39.c3 Check that asin, asinf, asinl, acos, acosf
11 extern double asin(double);
21 return asin(x);
H A Dc99-tgmath-1.c15 #ifndef asin
16 #error asin undefined
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.dg/
H A Dbuiltins-39.c3 Check that asin, asinf, asinl, acos, acosf
11 extern double asin(double);
21 return asin(x);
/netbsd-6-1-5-RELEASE/lib/libm/src/
H A Dw_asin.c19 * wrapper asin(x)
27 __weak_alias(asin, _asin)
31 asin(double x) /* wrapper asin */
40 return __kernel_standard(x,x,2); /* asin(|x|>1) */
H A Dnamespace.h25 #define asin _asin macro
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/execute/
H A D990413-2.c34 asin (double __x) function
45 x = asin (x);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/gcc.c-torture/execute/
H A D990413-2.c34 asin (double __x) function
45 x = asin (x);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/gas/testsuite/gas/tic54x/
H A Dmath.s5 .float $asin(0.0)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/26_numerics/headers/cmath/
H A Dfunctions_std.cc25 using std::asin;
H A Doverloads.cc31 ans = std::asin(i);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/tr1/8_c_compatibility/complex/
H A Dfunctions.cc34 ans = std::tr1::asin(cmplx_type(1.0, 1.0));
/netbsd-6-1-5-RELEASE/tests/lib/libm/
H A Dt_asin.c36 * asin(3)
41 atf_tc_set_md_var(tc, "descr", "Test asin(NaN) == NaN");
49 if (isnan(asin(x)) == 0)
50 atf_tc_fail_nonfatal("asin(NaN) != NaN");
57 atf_tc_set_md_var(tc, "descr", "Test asin(-Inf) == NaN");
65 if (isnan(asin(x)) == 0)
66 atf_tc_fail_nonfatal("asin(-Inf) != NaN");
73 atf_tc_set_md_var(tc, "descr", "Test asin(+Inf) == NaN");
81 if (isnan(asin(x)) == 0)
82 atf_tc_fail_nonfatal("asin(
[all...]
/netbsd-6-1-5-RELEASE/lib/libm/complex/
H A Dcasin.c58 w = asin(x) + 0.0 * I;
/netbsd-6-1-5-RELEASE/lib/libm/noieee_src/
H A Dn_asincos.c50 * asin(x) = atan2(x,sqrt(1-x*x)); for better accuracy, 1-x*x is
62 * asin(x) returns (PI/pi) * (the exact arc sine of x) nearly rounded;
78 * 2.06 ulps. (comparing against (PI/pi)*(exact asin(x)));
82 * asin(x) returns the exact asin(x) with error below about 2 ulps.
92 asin(double x) function
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/26_numerics/cmath/
H A Doverloads.cc12 ans = std::asin(i);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/testsuite/26_numerics/valarray/
H A Dname_lookup.cc68 Number asin(Number);
100 v = asin(u);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/testsuite/26_numerics/valarray/
H A Dvalarray_name_lookup.cc77 Number asin(Number);
109 v = asin(u);
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/
H A Dcdce3.C81 DEF_MATH_FUNC (m,asin)
102 DEF_MATH_FUNC (o,asin)
139 INIT_MATH_FUNC (m,asin, true, true)
161 INIT_MATH_FUNC (o,asin, true, true)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/include/c_compatibility/
H A Dmath.h38 using std::asin;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/include/c_compatibility/
H A Dmath.h37 using std::asin;
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libstdc++-v3/libmath/
H A Dstubs.c75 return (float) asin(x);
83 return asin((double) x);
/netbsd-6-1-5-RELEASE/external/lgpl2/mpc/dist/src/
H A DMakefile.am7 add_si.c add_ui.c arg.c asin.c asinh.c atan.c atanh.c clear.c cmp.c cmp_si_si.c \
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libstdc++-v3/src/
H A Dmath_stubs_float.cc53 return (float) asin(x);
H A Dmath_stubs_long_double.cc53 return asin((double) x);

Completed in 321 milliseconds

123