HomeSort by relevance Sort by last modified time
    Searched refs:atan2 (Results 201 - 225 of 277) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_valarray.h 928 inline valarray<_Tp> atan2(const valarray<_Tp>& __x,
933 __tmp[__i] = ::atan2(__x[__i], __y[__i]);
938 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, const _Tp& __c) {
942 __tmp[__i] = ::atan2(__x[__i], __c);
947 inline valarray<_Tp> atan2(const _Tp& __c, const valarray<_Tp>& __x) {
951 __tmp[__i] = ::atan2(__c, __x[__i]);
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_valarray.h 928 inline valarray<_Tp> atan2(const valarray<_Tp>& __x,
933 __tmp[__i] = ::atan2(__x[__i], __y[__i]);
938 inline valarray<_Tp> atan2(const valarray<_Tp>& __x, const _Tp& __c) {
942 __tmp[__i] = ::atan2(__x[__i], __c);
947 inline valarray<_Tp> atan2(const _Tp& __c, const valarray<_Tp>& __x) {
951 __tmp[__i] = ::atan2(__c, __x[__i]);
    [all...]
  /external/quake/quake/src/WinQuake/
pr_cmds.cpp 412 yaw = (int) (atan2(value1[1], value1[0]) * 180 / M_PI);
446 yaw = (int) (atan2(value1[1], value1[0]) * 180 / M_PI);
451 pitch = (int) (atan2(value1[2], forward) * 180 / M_PI);
    [all...]
  /frameworks/base/libs/hwui/
PathTessellator.cpp 244 float beginTheta = atan2(
247 float endTheta = atan2(
449 float theta = atan2(normal.y, normal.x);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Eigen3f.java 351 double angle = Math.atan2(Math.sqrt(-q), mbDiv2) * ONE_THIRD_DOUBLE;
  /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/webkit/Source/WebCore/rendering/svg/
SVGTextQuery.cpp 441 data->rotation = narrowPrecisionToFloat(rad2deg(atan2(fragmentTransform.b(), fragmentTransform.a())));
  /frameworks/rs/scriptc/
rs_cl.rsh 247 extern float __attribute__((overloadable)) atan2(float y, float x);
248 FN_FUNC_FN_FN(atan2)
  /libcore/luni/src/main/java/java/lang/
Math.java 150 * <li>{@code atan2((anything), NaN ) = NaN;}</li>
151 * <li>{@code atan2(NaN , (anything) ) = NaN;}</li>
152 * <li>{@code atan2(+0.0, +(anything but NaN)) = +0.0}</li>
153 * <li>{@code atan2(-0.0, +(anything but NaN)) = -0.0}</li>
154 * <li>{@code atan2(+0.0, -(anything but NaN)) = +pi}</li>
155 * <li>{@code atan2(-0.0, -(anything but NaN)) = -pi}</li>
156 * <li>{@code atan2(+(anything but 0 and NaN), 0) = +pi/2}</li>
157 * <li>{@code atan2(-(anything but 0 and NaN), 0) = -pi/2}</li>
158 * <li>{@code atan2(+(anything but infinity and NaN), +infinity)} {@code =}
160 * <li>{@code atan2(-(anything but infinity and NaN), +infinity)} {@code =
180 public static native double atan2(double y, double x); method in class:Math
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
GalleryUtils.java 180 return (2 * Math.atan2(Math.sqrt(x), Math.sqrt(Math.max(0.0,
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
IndicatorControlWheel.java 265 double delta = Math.atan2(dy, dx);
  /prebuilts/sdk/renderscript/include/
rs_cl.rsh 247 extern float __attribute__((overloadable)) atan2(float y, float x);
248 FN_FUNC_FN_FN(atan2)
  /bionic/tests/
math_test.cpp 268 TEST(math, atan2) {
269 ASSERT_FLOAT_EQ(0.0, atan2(0.0, 0.0));
  /external/v8/src/
math.js 283 "atan2", MathAtan2,
  /external/v8/test/mjsunit/
undeletable-functions.js 61 "round", "sin", "sqrt", "tan", "atan2", "pow", "max", "min"];
  /ndk/sources/cxx-stl/llvm-libc++/test/depr/depr.c.headers/
math_h.pass.cpp 44 static_assert((std::is_same<decltype(atan2((double)0, (double)0)), double>::value), "");
47 assert(atan2(0,1) == 0);
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rs_cl.c 363 extern float __attribute__((overloadable)) atan2(float, float);
364 FN_FUNC_FN_FN(atan2)
376 return atan2(y, x) / M_PI;
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 638 mHeadingAngle = (float) Math.atan2(mHeadingY, mHeadingX);
  /external/ceres-solver/examples/
nist.cc 285 b[0] - b[1] * x - atan2(b[2], (x - b[3]))/T(kPi)
  /external/opencv/cv/src/
cvlinefit.cpp 91 t = (float) atan2( 2 * dxy, dx2 - dy2 ) / 2;
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 509 angle = (float) Math.atan2(targetVector[1], targetVector[0]);
  /frameworks/base/core/java/com/android/internal/widget/
WaveView.java 204 double touchA = Math.atan2(distX, distY);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageGeometry.java 78 return (float) (Math.atan2(dx, dy) * 180 / Math.PI);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
valarray_after.h 542 _DEFINE_EXPR_BINARY_FUNCTION(atan2)
valarray_before.h 322 { return atan2(__x, __y); }

Completed in 1653 milliseconds

1 2 3 4 5 6 7 891011>>