Home
last modified time | relevance | path

Searched refs:atan2 (Results 1 – 25 of 39) sorted by relevance

12

/ndk/tests/device/test-stlport/unit/
Dvalarray_test.cpp42 tmp = atan2(darray, tmp); in transcendentals()
43 tmp = atan2(1.0, darray); in transcendentals()
44 tmp = atan2(darray, 1.0); in transcendentals()
68 tmp = atan2(farray, tmp); in transcendentals()
69 tmp = atan2(1.0f, farray); in transcendentals()
70 tmp = atan2(farray, 1.0f); in transcendentals()
95 tmp = atan2(ldarray, tmp); in transcendentals()
96 tmp = atan2(1.0l, ldarray); in transcendentals()
97 tmp = atan2(ldarray, 1.0l); in transcendentals()
Dcmath_test.cpp104 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0, 1.0)), 1.0) ); in import_checks()
129 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0f, 1.0f)), 1.0f) ); in import_checks()
156 CPPUNIT_CHECK( are_equals(std::atan2(0.0l, 1.0l), 0.0l) ); in import_checks()
/ndk/tests/device/test-gnustl-full/unit/
Dvalarray_test.cpp42 tmp = atan2(darray, tmp); in transcendentals()
43 tmp = atan2(1.0, darray); in transcendentals()
44 tmp = atan2(darray, 1.0); in transcendentals()
68 tmp = atan2(farray, tmp); in transcendentals()
69 tmp = atan2(1.0f, farray); in transcendentals()
70 tmp = atan2(farray, 1.0f); in transcendentals()
95 tmp = atan2(ldarray, tmp); in transcendentals()
96 tmp = atan2(1.0l, ldarray); in transcendentals()
97 tmp = atan2(ldarray, 1.0l); in transcendentals()
Dcmath_test.cpp104 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0, 1.0)), 1.0) ); in import_checks()
129 CPPUNIT_CHECK( are_equals(std::tan(std::atan2(1.0f, 1.0f)), 1.0f) ); in import_checks()
156 CPPUNIT_CHECK( are_equals(std::atan2(0.0l, 1.0l), 0.0l) ); in import_checks()
/ndk/sources/cxx-stl/stlport/stlport/stl/config/
D_como.h86 # define atan2l atan2
119 # define atan2l atan2
120 # define atan2f atan2
160 # define atan2l atan2
/ndk/sources/cxx-stl/stlport/src/
Dcomplex.cpp56 { return ::atan2(__z._M_im, __z._M_re); } in arg()
60 { return ::atan2(__z._M_im, __z._M_re); } in arg()
65 { return ::atan2(__z._M_im, __z._M_re); } in arg()
224 r._M_im = ::atan2(z._M_im, z._M_re) * ln10_inv; in log10T()
255 r._M_im = ::atan2(z._M_im, z._M_re); in logT()
294 _Tp logi = ::atan2(a._M_im, a._M_re); in powT()
304 _Tp logi = ::atan2(a._M_im, a._M_re); in powT()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
Datan2_valarray_value.pass.cpp46 std::valarray<T> v3 = atan2(v1, .75); in main()
Datan2_value_valarray.pass.cpp46 std::valarray<T> v3 = atan2(.75, v1); in main()
Datan2_valarray_valarray.pass.cpp48 std::valarray<T> v3 = atan2(v1, v2); in main()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
Dlog10.pass.cpp37 const double pi = std::atan2(+0., -0.); in test_edges()
Dcos.pass.cpp38 const double pi = std::atan2(+0., -0.); in test_edges()
Dpow_complex_scalar.pass.cpp39 const double pi = std::atan2(+0., -0.); in test_edges()
Dpow_scalar_complex.pass.cpp39 const double pi = std::atan2(+0., -0.); in test_edges()
Dsin.pass.cpp38 const double pi = std::atan2(+0., -0.); in test_edges()
Dpow_complex_complex.pass.cpp39 const double pi = std::atan2(+0., -0.); in test_edges()
Dtan.pass.cpp39 const double pi = std::atan2(+0., -0.); in test_edges()
Dtanh.pass.cpp38 const double pi = std::atan2(+0., -0.); in test_edges()
Dsinh.pass.cpp38 const double pi = std::atan2(+0., -0.); in test_edges()
Dcosh.pass.cpp38 const double pi = std::atan2(+0., -0.); in test_edges()
/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…
364 _STLP_DMATH_INLINE2(atan2) in _STLP_DMATH_INLINE()
435 _STLP_DEF_MATH_INLINE2(atan2, atan2)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sin…
557 using ::atan2;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/
Darg.pass.cpp31 const double pi = std::atan2(+0., -0.); in test_edges()
/ndk/sources/android/support/src/
Dmath_support.c57 __attribute__((weak)) long double atan2l(long double x, long double y) { return atan2((double)x, (d… in atan2l()
/ndk/sources/cxx-stl/system/include/
Dcmath51 using ::atan2;
/ndk/sources/cxx-stl/gabi++/include/
Dcmath51 using ::atan2;
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
Dcmath.pass.cpp88 static_assert((std::is_same<decltype(std::atan2((float)0, (float)0)), float>::value), ""); in test_atan2()
89 static_assert((std::is_same<decltype(std::atan2((bool)0, (float)0)), double>::value), ""); in test_atan2()
90 …static_assert((std::is_same<decltype(std::atan2((unsigned short)0, (double)0)), double>::value), "… in test_atan2()
91 …static_assert((std::is_same<decltype(std::atan2((int)0, (long double)0)), long double>::value), ""… in test_atan2()
92 … static_assert((std::is_same<decltype(std::atan2((float)0, (unsigned int)0)), double>::value), ""); in test_atan2()
93 static_assert((std::is_same<decltype(std::atan2((double)0, (long)0)), double>::value), ""); in test_atan2()
94 …static_assert((std::is_same<decltype(std::atan2((long double)0, (unsigned long)0)), long double>::… in test_atan2()
95 static_assert((std::is_same<decltype(std::atan2((int)0, (long long)0)), double>::value), ""); in test_atan2()
96 …static_assert((std::is_same<decltype(std::atan2((int)0, (unsigned long long)0)), double>::value), … in test_atan2()
97 static_assert((std::is_same<decltype(std::atan2((double)0, (double)0)), double>::value), ""); in test_atan2()
[all …]

12