/external/opencv3/samples/gpu/ |
pyrlk_optical_flow.cpp | 41 double angle = atan2((double) p.y - q.y, (double) p.x - q.x);
|
/external/opencv3/samples/tapi/ |
pyrlk_optical_flow.cpp | 46 double angle = atan2((double) p.y - q.y, (double) p.x - q.x);
|
/external/v8/test/mjsunit/ |
undeletable-functions.js | 61 "round", "sin", "sqrt", "tan", "atan2", "pow", "max", "min"];
|
/external/v8/test/webkit/fast/js/kde/ |
math.js | 25 var negativeZero = Math.atan2(-1, Infinity); // ### any nicer way?
|
/external/vulkan-validation-layers/libs/glm/detail/ |
func_trigonometric.inl | 140 return genType(::std::atan2(y, x));
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
compatibility.hpp | 80 template <typename T, precision P> GLM_FUNC_QUALIFIER T atan2(T x, T y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm 81 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec2<T, P> atan2(const detail::tvec2<T, P>& x, const detail::tvec2<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm 82 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec3<T, P> atan2(const detail::tvec3<T, P>& x, const detail::tvec3<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm 83 template <typename T, precision P> GLM_FUNC_QUALIFIER detail::tvec4<T, P> atan2(const detail::tvec4<T, P>& x, const detail::tvec4<T, P>& y){return atan(x, y);} //!< \brief Arc tangent. Returns an angle whose tangent is y/x. The signs of x and y are used to determine what quadrant the angle is in. The range of values returned by this function is [-PI, PI]. Results are undefined if x and y are both 0. (From GLM_GTX_compatibility) function in namespace:glm
|
/frameworks/base/core/java/android/view/ |
OrientationEventListener.java | 128 float angle = (float)Math.atan2(-Y, X) * OneEightyOverPi;
|
/hardware/bsp/intel/peripheral/libmraa/examples/java/ |
I2cCompass.java | 124 direction = (float) Math.atan2(y * SCALE_0_92_MG, x * SCALE_0_92_MG);
|
/hardware/bsp/intel/peripheral/libupm/src/lsm303/ |
lsm303.cxx | 74 float heading = 180.0 * atan2(double(coor[Y]), double(coor[X]))/M_PI;
|
/hardware/bsp/intel/peripheral/libupm/src/lsm303d/ |
lsm303d.cxx | 92 float heading = 180.0 * atan2(double(coor[Y]), double(coor[X]))/M_PI;
|
/libcore/ojluni/src/main/native/ |
StrictMath.c | 171 NATIVE_METHOD(StrictMath, atan2, "(DD)D"),
|
fdlibm.h | 120 extern double atan2 __P((double, double));
|
/ndk/sources/android/support/src/ |
math_support.c | 57 __attribute__((weak)) long double atan2l(long double x, long double y) { return atan2((double)x, (double)y); }
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/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.);
|
/packages/apps/Dialer/InCallUI/src/com/android/incallui/ |
AccelerometerListener.java | 128 double angle = Math.atan2(xy, z);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/ |
ImageTinyPlanet.java | 88 return (float) (Math.atan2(dx, dy) * 180 / Math.PI);
|
/packages/apps/LegacyCamera/src/com/android/camera/ui/ |
ZoomControlWheel.java | 95 double angle = Math.atan2(dy, dx);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
RoundedLine.java | 54 final double a = Math.atan2(dy, dx);
|