HomeSort by relevance Sort by last modified time
    Searched full:atan2 (Results 151 - 175 of 687) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
364 _STLP_DMATH_INLINE2(atan2)
435 _STLP_DEF_MATH_INLINE2(atan2, atan2)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
557 using ::atan2;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
364 _STLP_DMATH_INLINE2(atan2)
435 _STLP_DEF_MATH_INLINE2(atan2, atan2)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
557 using ::atan2;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cmath.h 345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
364 _STLP_DMATH_INLINE2(atan2)
435 _STLP_DEF_MATH_INLINE2(atan2, atan2)
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
557 using ::atan2;
  /external/chromium_org/third_party/libxslt/libexslt/
math.c 950 * Implements the EXSLT - Math atan2() function:
951 * number math:atan2 (number, number)
962 ret = atan2(y, x);
1101 xsltRegisterExtModuleFunction ((const xmlChar *) "atan2",
1187 (const xmlChar *) "atan2",
  /external/clang/lib/Headers/
tgmath.h 558 // atan2
566 __tg_atan2(double __x, double __y) {return atan2(__x, __y);}
572 #undef atan2 macro
573 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ macro
1233 __tg_carg(double __x) {return atan2(0., __x);}
  /external/valgrind/main/memcheck/tests/
vcpu_fbench.c 352 #define atan2 I_atan2 macro
530 /* atan2(y,x) Return arctangent in radians of y/x,
533 static double atan2(y, x) function
539 if (y == 0.0) /* Special case: atan2(0,0) = 0 */
570 return atan2(x, sqrt(1 - x * x));
  /external/valgrind/main/perf/
fbench.c 348 #define atan2 I_atan2 macro
526 /* atan2(y,x) Return arctangent in radians of y/x,
529 static double atan2(y, x) function
535 if (y == 0.0) /* Special case: atan2(0,0) = 0 */
566 return atan2(x, sqrt(1 - x * x));
  /prebuilts/sdk/renderscript/clang-include/
tgmath.h 558 // atan2
566 __tg_atan2(double __x, double __y) {return atan2(__x, __y);}
572 #undef atan2 macro
573 #define atan2(__x, __y) __tg_atan2(__tg_promote2((__x), (__y))(__x), \ macro
1233 __tg_carg(double __x) {return atan2(0., __x);}
  /external/aac/libFDK/src/
FDK_trigFcts.cpp 136 FIXP_DBL at2; // atan2 out
210 // --- atan2()
212 at2 = at >> (AT2O_SF - ATO_SF); // now AT2O_SF for atan2
  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
NavCalculator.java 539 bearing = (int) Math.toDegrees(Math.atan2(y, x));
556 // int angle = (int)Math.atan2(p2.getLatitude() - p1.getLatitude(),
558 //Actually it's ATan2(dy , dx) where dy = y2 - y1 and dx = x2 - x1, or ATan(dy / dx)
  /external/opencv/cvaux/src/
cvscanlines.cpp     [all...]
  /external/ceres-solver/include/ceres/
jet.h 423 inline double atan2(double y, double x) { return std::atan2(y, x); } function in namespace:ceres
620 // atan2(b + db, a + da) ~= atan2(b, a) + (- b da + a db) / (a^2 + b^2)
625 Jet<T, N> atan2(const Jet<T, N>& g, const Jet<T, N>& f) { function in namespace:ceres
633 out.a = atan2(g.a, f.a);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_complex.py 5 from math import atan2, isnan, copysign namespace
290 return atan2(x, -1.)
504 self.assertEqual(atan2(z1.imag, -1.), atan2(0., -1.))
505 self.assertEqual(atan2(z2.imag, -1.), atan2(-0., -1.))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_complex.py 5 from math import atan2, isnan, copysign namespace
290 return atan2(x, -1.)
504 self.assertEqual(atan2(z1.imag, -1.), atan2(0., -1.))
505 self.assertEqual(atan2(z2.imag, -1.), atan2(-0., -1.))
  /external/ceres-solver/internal/ceres/
jet_test.cc 133 { // Check that atan2(r*sin(t), r*cos(t)) = t.
139 J u = atan2(r * sin(t), r * cos(t));
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames-expected.txt 84 FAIL getSortedOwnPropertyNames(Math) should be E,LN10,LN2,LOG10E,LOG2E,PI,SQRT1_2,SQRT2,abs,acos,asin,atan,atan2,ceil,cos,exp,floor,log,max,min,pow,random,round,sin,sqrt,tan. Was E,LN10,LN2,LOG10E,LOG2E,PI,SQRT1_2,SQRT2,abs,acos,asin,atan,atan2,ceil,cos,exp,floor,imul,log,max,min,pow,random,round,sin,sqrt,tan.
  /external/valgrind/main/memcheck/tests/amd64/
more_x87_fp.c 56 printf("a=%f b=%f atan2(a, b)=%f\n", a, b, atan2(a, b));
  /hardware/invensense/65xx/libsensors_iio/
libmplmpu.so 
  /hardware/invensense/65xx/libsensors_iio/software/core/mpl/build/android/
libmplmpu.so 
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1_impl/
complex 139 return std::complex<_Tp>(_Tp(0.5) * atan2(_Tp(2.0) * __z.real(), __x),
262 _Tp(0.5) * atan2(_Tp(2.0) * __z.imag(), __x));
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
complex 139 return std::complex<_Tp>(_Tp(0.5) * atan2(_Tp(2.0) * __z.real(), __x),
262 _Tp(0.5) * atan2(_Tp(2.0) * __z.imag(), __x));
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
complex 139 return std::complex<_Tp>(_Tp(0.5) * atan2(_Tp(2.0) * __z.real(), __x),
262 _Tp(0.5) * atan2(_Tp(2.0) * __z.imag(), __x));
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1_impl/
complex 139 return std::complex<_Tp>(_Tp(0.5) * atan2(_Tp(2.0) * __z.real(), __x),
262 _Tp(0.5) * atan2(_Tp(2.0) * __z.imag(), __x));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/tr1_impl/
complex 139 return std::complex<_Tp>(_Tp(0.5) * atan2(_Tp(2.0) * __z.real(), __x),
262 _Tp(0.5) * atan2(_Tp(2.0) * __z.imag(), __x));
  /cts/suite/cts/deviceTests/opengl/jni/reference/scene/flocking/
FlockingScene.cpp 166 transformMatrix->rotate(atan2(vel->mY, vel->mX) + M_PI, 0, 0, 1);

Completed in 1250 milliseconds

1 2 3 4 5 67 8 91011>>