Searched
full:atan2 (Results
276 -
300 of
927) sorted by null
<<11121314151617181920>>
/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));
|
loss_function.cc | 84 rho[0] = a_ * atan2(s, a_);
|
/external/deqp/framework/delibs/debase/ |
deMath.h | 143 DE_INLINE float deFloatAtan2 (float y, float x) { return (float)atan2(y, x); } 157 DE_INLINE double deAtan2 (double y, double x) { return atan2(y, x); }
|
/external/llvm/test/Transforms/ConstProp/ |
calls.ll | 7 declare double @atan2(double, double) 72 %4 = call double @atan2(double 3.000000e+00, double 4.000000e+00)
|
/external/valgrind/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/6515/libsensors_iio/ |
libmplmpu.so | |
/hardware/invensense/6515/libsensors_iio/software/core/mpl/build/android/ |
libmplmpu.so | |
/hardware/invensense/65xx/libsensors_iio/ |
libmplmpu.so | |
/hardware/invensense/65xx/libsensors_iio/software/core/mpl/build/android/ |
libmplmpu.so | |
/art/runtime/entrypoints/quick/ |
quick_entrypoints_list.h | 94 V(Atan2, double, double, double) \
|
/cts/tests/openglperf2/jni/reference/scene/flocking/ |
FlockingScene.cpp | 166 transformMatrix->rotate(atan2(vel->mY, vel->mX) + M_PI, 0, 0, 1);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
ColorPickerDialog.java | 187 float angle = (float)java.lang.Math.atan2(y, x);
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
ColorWheel.java | 204 float angle = (float)java.lang.Math.atan2(y, x);
|
/external/libcxx/test/std/numerics/complex.number/complex.transcendentals/ |
acosh.pass.cpp | 38 const double pi = std::atan2(+0., -0.);
|
asin.pass.cpp | 38 const double pi = std::atan2(+0., -0.);
|
asinh.pass.cpp | 38 const double pi = std::atan2(+0., -0.);
|
atanh.pass.cpp | 38 const double pi = std::atan2(+0., -0.);
|
cosh.pass.cpp | 38 const double pi = std::atan2(+0., -0.);
|
log.pass.cpp | 37 const double pi = std::atan2(+0., -0.);
|
sinh.pass.cpp | 38 const double pi = std::atan2(+0., -0.);
|
tanh.pass.cpp | 38 const double pi = std::atan2(+0., -0.);
|
/external/opencv3/3rdparty/openexr/Imath/ |
ImathFrustum.h | 330 return Math<T>::atan2(_right,_nearPlane) - Math<T>::atan2(_left,_nearPlane); 336 return Math<T>::atan2(_top,_nearPlane) - Math<T>::atan2(_bottom,_nearPlane);
|
/external/opencv3/samples/cpp/ |
tvl1_optical_flow.cpp | 60 const float a = atan2(-fy, -fx) / (float)CV_PI;
|
/external/opencv3/samples/gpu/ |
optical_flow.cpp | 62 const float a = atan2(-fy, -fx) / (float) CV_PI;
|
Completed in 799 milliseconds
<<11121314151617181920>>