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

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/src/android/renderscript/cts/
atan2_f32.rs 10 *out = atan2(in->first, in->second);
19 *out = atan2(in->first, in->second);
28 *out = atan2(in->first, in->second);
37 *out = atan2(in->first, in->second);
  /external/stlport/test/unit/
valarray_test.cpp 42 tmp = atan2(darray, tmp);
43 tmp = atan2(1.0, darray);
44 tmp = atan2(darray, 1.0);
68 tmp = atan2(farray, tmp);
69 tmp = atan2(1.0f, farray);
70 tmp = atan2(farray, 1.0f);
95 tmp = atan2(ldarray, tmp);
96 tmp = atan2(1.0l, ldarray);
97 tmp = atan2(ldarray, 1.0l);
  /ndk/tests/device/test-gnustl-full/unit/
valarray_test.cpp 42 tmp = atan2(darray, tmp);
43 tmp = atan2(1.0, darray);
44 tmp = atan2(darray, 1.0);
68 tmp = atan2(farray, tmp);
69 tmp = atan2(1.0f, farray);
70 tmp = atan2(farray, 1.0f);
95 tmp = atan2(ldarray, tmp);
96 tmp = atan2(1.0l, ldarray);
97 tmp = atan2(ldarray, 1.0l);
  /ndk/tests/device/test-stlport/unit/
valarray_test.cpp 42 tmp = atan2(darray, tmp);
43 tmp = atan2(1.0, darray);
44 tmp = atan2(darray, 1.0);
68 tmp = atan2(farray, tmp);
69 tmp = atan2(1.0f, farray);
70 tmp = atan2(farray, 1.0f);
95 tmp = atan2(ldarray, tmp);
96 tmp = atan2(1.0l, ldarray);
97 tmp = atan2(ldarray, 1.0l);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_atan2.c 20 * 1. Reduce y to positive by atan2(y,x)=-atan2(-y,x).
27 * ATAN2((anything), NaN ) is NaN;
28 * ATAN2(NAN , (anything) ) is NaN;
29 * ATAN2(+-0, +(anything but NaN)) is +-0 ;
30 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
31 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
32 * ATAN2(+-(anything but INF and NaN), +INF) is +-0 ;
33 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
34 * ATAN2(+-INF,+INF ) is +-pi/4
    [all...]
  /external/eigen/Eigen/src/Geometry/
EulerAngles.h 50 res[1] = internal::atan2(s, coeff(i,i));
53 res[0] = internal::atan2(coeff(j,i), coeff(k,i));
54 res[2] = internal::atan2(coeff(i,j),-coeff(i,k));
59 res[2] = (coeff(i,i)>0?1:-1)*internal::atan2(-coeff(k,j), coeff(j,j));
65 res[1] = internal::atan2(-coeff(i,k), c);
68 res[0] = internal::atan2(coeff(j,k), coeff(k,k));
69 res[2] = internal::atan2(coeff(i,j), coeff(i,i));
74 res[2] = (coeff(i,k)>0?1:-1)*internal::atan2(-coeff(k,j), coeff(j,j));
  /external/chromium_org/v8/test/mjsunit/regress/
regress-925537.js 38 assertClose( Math.PI / 4, Math.atan2(pinf, pinf));
39 assertClose(-Math.PI / 4, Math.atan2(ninf, pinf));
40 assertClose( 3 * Math.PI / 4, Math.atan2(pinf, ninf));
41 assertClose(-3 * Math.PI / 4, Math.atan2(ninf, ninf));
  /external/v8/test/mjsunit/regress/
regress-925537.js 38 assertClose( Math.PI / 4, Math.atan2(pinf, pinf));
39 assertClose(-Math.PI / 4, Math.atan2(ninf, pinf));
40 assertClose( 3 * Math.PI / 4, Math.atan2(pinf, ninf));
41 assertClose(-3 * Math.PI / 4, Math.atan2(ninf, ninf));
  /external/fdlibm/
e_atan2.c 24 * ATAN2((anything), NaN ) is NaN;
25 * ATAN2(NAN , (anything) ) is NaN;
26 * ATAN2(+-0, +(anything but NaN)) is +-0 ;
27 * ATAN2(+-0, -(anything but NaN)) is +-pi ;
28 * ATAN2(+-(anything but 0 and NaN), 0) is +-pi/2;
29 * ATAN2(+-(anything but INF and NaN), +INF) is +-0 ;
30 * ATAN2(+-(anything but INF and NaN), -INF) is +-pi;
31 * ATAN2(+-INF,+INF ) is +-pi/4 ;
32 * ATAN2(+-INF,-INF ) is +-3pi/4;
33 * ATAN2(+-INF, (anything but,0,NaN, and INF)) is +-pi/2
    [all...]
w_atan2.c 23 double ieee_atan2(double y, double x) /* wrapper atan2 */
25 double ieee_atan2(y,x) /* wrapper atan2 */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_math.py 204 self.assertRaises(TypeError, math.atan2)
205 self.ftest('atan2(-1, 0)', math.atan2(-1, 0), -math.pi/2)
206 self.ftest('atan2(-1, 1)', math.atan2(-1, 1), -math.pi/4)
207 self.ftest('atan2(0, 1)', math.atan2(0, 1), 0)
208 self.ftest('atan2(1, 1)', math.atan2(1, 1), math.pi/4)
209 self.ftest('atan2(1, 0)', math.atan2(1, 0), math.pi/2
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_math.py 204 self.assertRaises(TypeError, math.atan2)
205 self.ftest('atan2(-1, 0)', math.atan2(-1, 0), -math.pi/2)
206 self.ftest('atan2(-1, 1)', math.atan2(-1, 1), -math.pi/4)
207 self.ftest('atan2(0, 1)', math.atan2(0, 1), 0)
208 self.ftest('atan2(1, 1)', math.atan2(1, 1), math.pi/4)
209 self.ftest('atan2(1, 0)', math.atan2(1, 0), math.pi/2
    [all...]
  /external/chromium_org/v8/test/webkit/
math-expected.txt 59 PASS Math.atan2(NaN, NaN) is NaN
60 PASS Math.atan2(NaN, 0) is NaN
61 PASS Math.atan2(NaN, -0) is NaN
62 PASS Math.atan2(NaN, 1) is NaN
63 PASS Math.atan2(NaN, Infinity) is NaN
64 PASS Math.atan2(NaN, -Infinity) is NaN
65 PASS Math.atan2(0, NaN) is NaN
66 PASS Math.atan2(-0, NaN) is NaN
67 PASS Math.atan2(1, NaN) is NaN
68 PASS Math.atan2(Infinity, NaN) is Na
    [all...]
math.js 64 shouldBe("Math.atan2(NaN, NaN)", "NaN");
65 shouldBe("Math.atan2(NaN, 0)", "NaN");
66 shouldBe("Math.atan2(NaN, -0)", "NaN");
67 shouldBe("Math.atan2(NaN, 1)", "NaN");
68 shouldBe("Math.atan2(NaN, Infinity)", "NaN");
69 shouldBe("Math.atan2(NaN, -Infinity)", "NaN");
70 shouldBe("Math.atan2(0, NaN)", "NaN");
71 shouldBe("Math.atan2(-0, NaN)", "NaN");
72 shouldBe("Math.atan2(1, NaN)", "NaN");
73 shouldBe("Math.atan2(Infinity, NaN)", "NaN")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/numarray/valarray.nonmembers/valarray.transcend/
atan2_valarray_valarray.pass.cpp 16 // atan2(const valarray<T>& x, const valarray<T>& y);
48 std::valarray<T> v3 = atan2(v1, v2);
atan2_valarray_value.pass.cpp 16 // atan2(const valarray<T>& x, const T& y);
46 std::valarray<T> v3 = atan2(v1, .75);
atan2_value_valarray.pass.cpp 16 // atan2(const T& x, const valarray<T>& y);
46 std::valarray<T> v3 = atan2(.75, v1);
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-14/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-3/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-4/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-5/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-8/arch-arm/usr/lib/
libm.so 
  /prebuilts/ndk/7/platforms/android-9/arch-arm/usr/lib/
libm.so 

Completed in 3577 milliseconds

1 2 3 4 5 6 7 8 91011>>