Home
last modified time | relevance | path

Searched refs:acos (Results 1 – 20 of 20) sorted by relevance

/ndk/tests/device/test-stlport/unit/
Dvalarray_test.cpp39 tmp = acos(darray); in transcendentals()
65 tmp = acos(farray); in transcendentals()
92 tmp = acos(ldarray); in transcendentals()
Dcmath_test.cpp101 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0)), 1.0) ); in import_checks()
126 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0f)), 1.0f) ); in import_checks()
152 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0l)), 1.0l) ); in import_checks()
/ndk/tests/device/test-gnustl-full/unit/
Dvalarray_test.cpp39 tmp = acos(darray); in transcendentals()
65 tmp = acos(farray); in transcendentals()
92 tmp = acos(ldarray); in transcendentals()
Dcmath_test.cpp101 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0)), 1.0) ); in import_checks()
126 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0f)), 1.0f) ); in import_checks()
152 CPPUNIT_CHECK( are_equals(std::cos(std::acos(1.0l)), 1.0l) ); in import_checks()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
Dacos_valarray.pass.cpp46 std::valarray<T> v3 = acos(v1); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh…
361 _STLP_DMATH_INLINE(acos)
432 _STLP_DEF_MATH_INLINE(acos, acos)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sin…
554 using ::acos;
D_valarray.h901 inline valarray<_Tp> acos(const valarray<_Tp>& __x) { in acos() function
905 __tmp[__i] = ::acos(__x[__i]); in acos()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
Dacos.pass.cpp25 assert(acos(c) == x); in test()
42 std::complex<double> r = acos(x[i]); in test_edges()
/ndk/sources/android/support/src/
Dmath_support.c54 __attribute__((weak)) long double acosl(long double x) { return acos((double)x); } in acosl()
/ndk/sources/cxx-stl/system/include/
Dcmath48 using ::acos;
/ndk/sources/cxx-stl/gabi++/include/
Dcmath48 using ::acos;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
Dconfig.hpp218 using std::acos;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp34 static_assert((std::is_same<decltype(std::acos((float)0)), float>::value), ""); in test_acos()
35 static_assert((std::is_same<decltype(std::acos((bool)0)), double>::value), ""); in test_acos()
36 static_assert((std::is_same<decltype(std::acos((unsigned short)0)), double>::value), ""); in test_acos()
37 static_assert((std::is_same<decltype(std::acos((int)0)), double>::value), ""); in test_acos()
38 static_assert((std::is_same<decltype(std::acos((unsigned int)0)), double>::value), ""); in test_acos()
39 static_assert((std::is_same<decltype(std::acos((long)0)), double>::value), ""); in test_acos()
40 static_assert((std::is_same<decltype(std::acos((unsigned long)0)), double>::value), ""); in test_acos()
41 static_assert((std::is_same<decltype(std::acos((long long)0)), double>::value), ""); in test_acos()
42 static_assert((std::is_same<decltype(std::acos((unsigned long long)0)), double>::value), ""); in test_acos()
43 static_assert((std::is_same<decltype(std::acos((double)0)), double>::value), ""); in test_acos()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath50 floating_point acos (arithmetic x);
673 // acos
675 using ::acos;
679 inline _LIBCPP_INLINE_VISIBILITY float acos(float __x) _NOEXCEPT {return acosf(__x);}
680 inline _LIBCPP_INLINE_VISIBILITY long double acos(long double __x) _NOEXCEPT {return acosl(__x);}
686 acos(_A1 __x) _NOEXCEPT {return acos((double)__x);}
Dcomplex209 template<class T> complex<T> acos(const complex<T>&);
1373 // acos
1377 acos(const complex<_Tp>& __x)
Dvalarray309 template<class T> valarray<T> acos (const valarray<T>& x);
529 {return acos(__x);}
4478 acos(const _Expr& __x)
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp20 static_assert((std::is_same<decltype(acos((double)0)), double>::value), ""); in test_acos()
23 assert(acos(1) == 0); in test_acos()
/ndk/sources/android/support/src/msun/
Dmath_private.h672 #define __ieee754_acos acos
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk2461 $(call gen-test, numerics/complex.number/complex.transcendentals/acos)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk2470 $(call gen-test, numerics/complex.number/complex.transcendentals/acos)