Home
last modified time | relevance | path

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

/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/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;
D_valarray.h928 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, in atan2() function
933 __tmp[__i] = ::atan2(__x[__i], __y[__i]); in atan2()
938 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, const _Tp& __c) { in atan2() function
942 __tmp[__i] = ::atan2(__x[__i], __c); in atan2()
947 inline valarray<_Tp> atan2(const _Tp& __c, const valarray<_Tp>& __x) { in atan2() function
951 __tmp[__i] = ::atan2(__c, __x[__i]); in atan2()
/ndk/sources/cxx-stl/gabi++/include/
Dcmath51 using ::atan2;
/ndk/sources/cxx-stl/system/include/
Dcmath51 using ::atan2;
/ndk/sources/host-tools/nawk-20071023/
Drun.c1502 u = atan2(getfval(x), getfval(y)); in bltin()