Home
last modified time | relevance | path

Searched refs:tan (Results 1 – 24 of 24) sorted by relevance

/ndk/tests/device/test-stlport/unit/
Dcmath_test.cpp103 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0)), 1.0) ); in import_checks()
104 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0, 1.0)), 1.0) ); in import_checks()
128 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0f)), 1.0f) ); in import_checks()
129 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0f, 1.0f)), 1.0f) ); in import_checks()
154 CPPUNIT_CHECK( are_equals(std::tan(0.0l), 0.0l) ); in import_checks()
Dvalarray_test.cpp49 tmp = tan(darray); in transcendentals()
75 tmp = tan(farray); in transcendentals()
102 tmp = tan(ldarray); in transcendentals()
/ndk/tests/device/test-gnustl-full/unit/
Dcmath_test.cpp103 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0)), 1.0) ); in import_checks()
104 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0, 1.0)), 1.0) ); in import_checks()
128 CPPUNIT_CHECK( are_equals(std::tan(std::atan(1.0f)), 1.0f) ); in import_checks()
129 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0f, 1.0f)), 1.0f) ); in import_checks()
154 CPPUNIT_CHECK( are_equals(std::tan(0.0l), 0.0l) ); in import_checks()
Dvalarray_test.cpp49 tmp = tan(darray); in transcendentals()
75 tmp = tan(farray); in transcendentals()
102 tmp = tan(ldarray); in transcendentals()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
Dtan.pass.cpp25 assert(tan(c) == x); in test()
43 std::complex<double> r = tan(x[i]); in test_edges()
/ndk/sources/cxx-stl/stlport/src/
Dcomplex_trig.cpp118 _STLP_DECLSPEC complex<float> _STLP_CALL tan(const complex<float>& z) in tan() function
121 _STLP_DECLSPEC complex<double> _STLP_CALL tan(const complex<double>& z) in tan() function
125 _STLP_DECLSPEC complex<long double> _STLP_CALL tan(const complex<long double>& z) in tan() function
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
Dtan_valarray.pass.cpp46 std::valarray<T> v3 = tan(v1); in main()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_cmath.h345 … (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
380 _STLP_DMATH_INLINE(tan) in _STLP_DMATH_INLINE()
451 _STLP_DEF_MATH_INLINE(tan, tan)
515 … (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
592 using ::tan;
D_complex.h879 _STLP_DECLSPEC complex<float> _STLP_CALL tan(const complex<float>&);
898 _STLP_DECLSPEC complex<double> _STLP_CALL tan(const complex<double>&);
918 _STLP_DECLSPEC complex<long double> _STLP_CALL tan(const complex<long double>&);
D_valarray.h1056 inline valarray<_Tp> tan(const valarray<_Tp>& __x) { in tan() function
1060 __tmp[__i] = ::tan(__x[__i]); in tan()
/ndk/sources/android/support/src/
Dmath_support.c66 __attribute__((weak)) long double tanl(long double x) { return tan((double)x); } in tanl()
/ndk/sources/cxx-stl/system/include/
Dcmath47 using ::tan;
/ndk/sources/cxx-stl/gabi++/include/
Dcmath47 using ::tan;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
Dconfig.hpp222 using std::tan;\
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp408 static_assert((std::is_same<decltype(std::tan((float)0)), float>::value), ""); in test_tan()
409 static_assert((std::is_same<decltype(std::tan((bool)0)), double>::value), ""); in test_tan()
410 static_assert((std::is_same<decltype(std::tan((unsigned short)0)), double>::value), ""); in test_tan()
411 static_assert((std::is_same<decltype(std::tan((int)0)), double>::value), ""); in test_tan()
412 static_assert((std::is_same<decltype(std::tan((unsigned int)0)), double>::value), ""); in test_tan()
413 static_assert((std::is_same<decltype(std::tan((long)0)), double>::value), ""); in test_tan()
414 static_assert((std::is_same<decltype(std::tan((unsigned long)0)), double>::value), ""); in test_tan()
415 static_assert((std::is_same<decltype(std::tan((long long)0)), double>::value), ""); in test_tan()
416 static_assert((std::is_same<decltype(std::tan((unsigned long long)0)), double>::value), ""); in test_tan()
417 static_assert((std::is_same<decltype(std::tan((double)0)), double>::value), ""); in test_tan()
[all …]
/ndk/sources/cxx-stl/llvm-libc++/libcxx/include/
Dcmath130 floating_point tan (arithmetic x);
1016 // tan
1018 using ::tan;
1023 inline _LIBCPP_INLINE_VISIBILITY float tan(float __x) _NOEXCEPT {return tanf(__x);}
1024 inline _LIBCPP_INLINE_VISIBILITY long double tan(long double __x) _NOEXCEPT {return tanl(__x);}
1030 tan(_A1 __x) _NOEXCEPT {return tan((double)__x);}
Dcomplex228 template<class T> complex<T> tan (const complex<T>&);
1440 // tan
1444 tan(const complex<_Tp>& __x)
Dvalarray330 template<class T> valarray<T> tan (const valarray<T>& x);
633 {return tan(__x);}
4724 tan(const _Expr& __x)
Drandom5557 // purposefully let tan arg get as close to pi/2 as it wants, tan will return a finite
5558 return __p.a() + __p.b() * _VSTD::tan(3.1415926535897932384626433832795 * __gen(__g));
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
Dmath_h.pass.cpp183 static_assert((std::is_same<decltype(tan((double)0)), double>::value), ""); in test_tan()
186 assert(tan(0) == 0); in test_tan()
/ndk/sources/host-tools/make-3.81/po/
Dtr.po1693 msgstr "Kullanıcı tanımlı sinyal 1"
1697 msgstr "Kullanıcı tanımlı sinyal 2"
/ndk/sources/host-tools/make-3.81/config/
Dtexinfo.tex173 par-a-digms rath-er rec-tan-gu-lar ro-bot-ics se-vere-ly set-up spa-ces
/ndk/tests/device/test-libc++-static-full/jni/
DAndroid.mk2478 $(call gen-test, numerics/complex.number/complex.transcendentals/tan)
/ndk/tests/device/test-libc++-shared-full/jni/
DAndroid.mk2487 $(call gen-test, numerics/complex.number/complex.transcendentals/tan)