/dragonfly/contrib/mpfr/src/ |
H A D | acos.c | 27 mpfr_acos (mpfr_ptr acos, mpfr_srcptr x, mpfr_rnd_t rnd_mode) in mpfr_acos() argument 39 mpfr_get_prec(acos), mpfr_log_prec, acos, inexact)); in mpfr_acos() 46 MPFR_SET_NAN (acos); in mpfr_acos() 54 inexact = mpfr_const_pi (acos, rnd_mode); in mpfr_acos() 55 mpfr_div_2ui (acos, acos, 1, rnd_mode); /* exact */ in mpfr_acos() 73 MPFR_SET_NAN(acos); in mpfr_acos() 79 return mpfr_set_ui (acos, 0, rnd_mode); in mpfr_acos() 81 return mpfr_const_pi (acos, rnd_mode); in mpfr_acos() 95 prec = MPFR_PREC (acos); in mpfr_acos() 140 inexact = mpfr_set (acos, arcc, rnd_mode); in mpfr_acos() [all …]
|
/dragonfly/tools/regression/lib/libm/ |
H A D | test-invtrig.c | 143 testall(acos, 0.0, pi / 2, FE_INEXACT); in test_special() 146 testall(acos, -0.0, pi / 2, FE_INEXACT); in test_special() 150 testall(acos, INFINITY, NAN, FE_INVALID); in test_special() 153 testall(acos, -INFINITY, NAN, FE_INVALID); in test_special() 157 testall(acos, NAN, NAN, 0); in test_special() 257 testall(acos, 1.0, 0, 0); in test_accuracy() 260 testall(acos, -1.0, pi, FE_INEXACT); in test_accuracy() 270 testall_tol(acos, sqrtl(2) / 2, pi / 4, 1, FE_INEXACT); in test_accuracy() 318 testall(acos, tiny, pi / 2, FE_INEXACT); in test_tiny() 322 testall(acos, -tiny, pi / 2, FE_INEXACT); in test_tiny() [all …]
|
/dragonfly/contrib/openbsd_libm/arch/amd64/ |
H A D | e_acos.S | 12 ENTRY(acos) 24 END(acos)
|
/dragonfly/contrib/openbsd_libm/src/ |
H A D | e_acos.c | 59 acos(double x) in acos() function 104 __strong_alias(acosl, acos);
|
/dragonfly/contrib/gcc-8.0/libstdc++-v3/include/tr1/ |
H A D | complex | 48 using std::acos; 55 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&); 91 acos(const std::complex<_Tp>& __z) 94 /// acos(__z) [8.1.2]. 99 acos(const std::complex<_Tp>& __z)
|
H A D | poly_laguerre.tcc | 84 const _Tp __th = std::acos(std::sqrt(__cos2th)); in __poly_laguerre_large_n()
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/tr1/ |
H A D | complex | 49 using std::acos; 53 template<typename _Tp> std::complex<_Tp> acos(const std::complex<_Tp>&); 90 acos(const std::complex<_Tp>& __z) 93 /// acos(__z) [8.1.2]. 98 acos(const std::complex<_Tp>& __z)
|
H A D | poly_laguerre.tcc | 79 const _Tp __th = std::acos(std::sqrt(__cos2th)); in __poly_laguerre_large_n()
|
/dragonfly/contrib/gcc-4.7/gcc/ |
H A D | fp-test.c | 43 extern double acos (double); 227 d1 = acos (d2); in main()
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_std/ |
H A D | cmath | 55 #undef acos 100 using ::acos; 103 acos(float __x) 107 acos(long double __x) 113 acos(_Tp __x)
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/include/c_compatibility/ |
H A D | math.h | 37 using std::acos;
|
/dragonfly/contrib/gcc-4.7/libstdc++-v3/src/c++98/ |
H A D | math_stubs_float.cc | 45 return (float) acos(x); in acosf()
|
H A D | math_stubs_long_double.cc | 45 return acos((double) x); in acosl()
|
/dragonfly/contrib/gcc-8.0/libstdc++-v3/src/c++98/ |
H A D | math_stubs_float.cc | 45 return (float) acos(x); in acosf()
|
H A D | math_stubs_long_double.cc | 45 return acos((double) x); in acosl()
|
/dragonfly/contrib/gcc-4.7/gcc/ginclude/ |
H A D | tgmath.h | 105 #define acos(z) __TGMATH_CPLX(z, acos, cacos) macro
|
/dragonfly/contrib/mpfr/ |
H A D | AUTHORS | 9 Mathieu Dutour acos.c, asin.c, atan.c and early gamma.c
|
/dragonfly/contrib/openbsd_libm/include/global/ |
H A D | tgmath.h | 141 #define acos(x) __tg_full(x, acos) macro
|
/dragonfly/gnu/usr.bin/mpc/ |
H A D | Makefile | 22 SRCS= mpc-impl.h abs.c acos.c acosh.c add.c add_fr.c \
|
/dragonfly/tools/regression/include/tgmath/ |
H A D | tgmath.c | 78 TGMACRO(acos) 410 PASS_REAL_ARG_REAL_RET(acos) && in main() 411 PASS_COMPLEX_ARG_COMPLEX_RET(acos)); in main()
|
/dragonfly/usr.bin/calendar/ |
H A D | utils.h | 227 return acos(x) * 180.0 / M_PI; in arccos_deg()
|
/dragonfly/lib/libm/ |
H A D | Makefile | 137 MAN= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 \ 150 MLINKS+=acos.3 acosf.3 \ 151 acos.3 acosl.3
|
H A D | Symbol.map | 7 acos;
|
/dragonfly/contrib/mpc/src/ |
H A D | logging.c | 133 MPC_LOGGING_C_C (acos)
|
/dragonfly/contrib/openbsd_libm/ |
H A D | Makefile | 181 MAN+= acos.3 acosh.3 asin.3 asinh.3 atan.3 atan2.3 atanh.3 ceil.3 \ 226 MLINKS+=acos.3 acosf.3 315 MLINKS+=acos.3 acosl.3
|