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

1 2 3 4 5 67 8 91011>>

  /external/ceres-solver/include/ceres/
jet.h 393 inline double atan2(double y, double x) { return std::atan2(y, x); } function in namespace:ceres
552 // atan2(b + db, a + da) ~= atan2(b, a) + (- b da + a db) / (a^2 + b^2)
557 Jet<T, N> atan2(const Jet<T, N>& g, const Jet<T, N>& f) { function in namespace:ceres
564 return Jet<T, N>(atan2(g.a, f.a), tmp * (- g.a * f.v + f.a * g.v));
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
FFTFrame.cpp 286 double phase = atan2(realP[i], imagP[i]);
  /external/chromium_org/third_party/skia/third_party/lua/src/
lmathlib.c 77 lua_pushnumber(L, l_mathop(atan2)(luaL_checknumber(L, 1),
237 {"atan2", math_atan2},
  /external/eigen/bench/
eig33.cpp 77 Scalar theta = std::atan2(internal::sqrt(-q),half_b)*s_inv3;
  /external/libcxx/test/numerics/c.math/
cmath.disabled.cpp 88 static_assert((std::is_same<decltype(std::atan2((float)0, (float)0)), float>::value), "");
89 static_assert((std::is_same<decltype(std::atan2((bool)0, (float)0)), double>::value), "");
90 static_assert((std::is_same<decltype(std::atan2((unsigned short)0, (double)0)), double>::value), "");
91 static_assert((std::is_same<decltype(std::atan2((int)0, (long double)0)), long double>::value), "");
92 static_assert((std::is_same<decltype(std::atan2((float)0, (unsigned int)0)), double>::value), "");
93 static_assert((std::is_same<decltype(std::atan2((double)0, (long)0)), double>::value), "");
94 static_assert((std::is_same<decltype(std::atan2((long double)0, (unsigned long)0)), long double>::value), "");
95 static_assert((std::is_same<decltype(std::atan2((int)0, (long long)0)), double>::value), "");
96 static_assert((std::is_same<decltype(std::atan2((int)0, (unsigned long long)0)), double>::value), "");
97 static_assert((std::is_same<decltype(std::atan2((double)0, (double)0)), double>::value), "")
    [all...]
  /external/libcxx/test/numerics/complex.number/complex.transcendentals/
acos.pass.cpp 38 const double pi = std::atan2(+0., -0.);
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.);
log.pass.cpp 37 const double pi = std::atan2(+0., -0.);
sinh.pass.cpp 38 const double pi = std::atan2(+0., -0.);
  /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));
more_x87_fp.stdout.exp 11 a=2.000000 b=3.000000 atan2(a, b)=0.588003
25 a=1.400000 b=-5.000000 atan2(a, b)=2.868584
  /external/valgrind/main/memcheck/tests/x86/
more_x86_fp.c 46 printf("a=%f b=%f atan2(a, b)=%f\n", a, b, atan2(a, b));
more_x86_fp.stdout.exp 12 a=2.000000 b=3.000000 atan2(a, b)=0.588003
27 a=1.400000 b=-5.000000 atan2(a, b)=2.868584
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/c.math/
cmath.pass.cpp 88 static_assert((std::is_same<decltype(std::atan2((float)0, (float)0)), float>::value), "");
89 static_assert((std::is_same<decltype(std::atan2((bool)0, (float)0)), double>::value), "");
90 static_assert((std::is_same<decltype(std::atan2((unsigned short)0, (double)0)), double>::value), "");
91 static_assert((std::is_same<decltype(std::atan2((int)0, (long double)0)), long double>::value), "");
92 static_assert((std::is_same<decltype(std::atan2((float)0, (unsigned int)0)), double>::value), "");
93 static_assert((std::is_same<decltype(std::atan2((double)0, (long)0)), double>::value), "");
94 static_assert((std::is_same<decltype(std::atan2((long double)0, (unsigned long)0)), long double>::value), "");
95 static_assert((std::is_same<decltype(std::atan2((int)0, (long long)0)), double>::value), "");
96 static_assert((std::is_same<decltype(std::atan2((int)0, (unsigned long long)0)), double>::value), "");
97 static_assert((std::is_same<decltype(std::atan2((double)0, (double)0)), double>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.transcendentals/
acos.pass.cpp 38 const double pi = std::atan2(+0., -0.);
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.);
log.pass.cpp 37 const double pi = std::atan2(+0., -0.);
sinh.pass.cpp 38 const double pi = std::atan2(+0., -0.);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/math/tools/
config.hpp 232 using std::atan2;\

Completed in 270 milliseconds

1 2 3 4 5 67 8 91011>>