Searched refs:hypot (Results 1 - 23 of 23) sorted by relevance

/external/chromium_org/v8/test/mjsunit/es6/
H A Dmath-hypot.js28 assertTrue(isNaN(Math.hypot({})));
29 assertTrue(isNaN(Math.hypot(undefined, 1)));
30 assertTrue(isNaN(Math.hypot(1, undefined)));
31 assertTrue(isNaN(Math.hypot(Math.hypot, 1)));
32 assertEquals(1, Math.hypot(1));
33 assertEquals(Math.PI, Math.hypot(Math.PI));
34 assertEquals(5, Math.hypot(3, 4));
35 assertEquals(13, Math.hypot(3, 4, 12));
36 assertEquals(15, Math.hypot("
[all...]
/external/clang/test/CodeGen/
H A Dmandel.c41 if (hypot(__real__ z, __imag__ z) >= ESCAPE)
H A Dlibcall-declarations.c100 double hypot(double, double);
282 F(hypot), F(hypotf), F(hypotl), F(ilogb), F(ilogbf),
399 // CHECK-NOERRNO: declare double @hypot(double, double) [[NUW]]
/external/stlport/src/
H A Dcomplex.cpp26 // hypot is deprecated.
41 { return ::hypot(__z._M_re, __z._M_im); }
44 { return ::hypot(__z._M_re, __z._M_im); }
49 { return ::hypot(__z._M_re, __z._M_im); }
170 _Tp mag = ::hypot(re, im);
225 r._M_re = ::log10(::hypot(z._M_re, z._M_im));
256 r._M_re = ::log(::hypot(z._M_re, z._M_im));
293 _Tp logr = ::log(::hypot(a._M_re,a._M_im));
303 _Tp logr = ::log(::hypot(a._M_re,a._M_im));
/external/stlport/stlport/stl/
H A D_cmath.h50 // All the other hypot stuff is going to be at file scope, so follow along here.
53 extern "C" double hypot(double x, double y);
383 _STLP_DMATH_INLINE2(hypot)
495 # pragma warning (disable : 4996) // hypot is deprecated.
497 _STLP_MATH_INLINE2XX(float, hypot, hypot)
498 inline long double hypot(long double x, long double y) { return sqrt(x * x + y * y); } function
504 inline double hypot(double x, double y) { return sqrt(x * x + y * y); } function
505 _STLP_DEF_MATH_INLINE2(hypot, hypot)
[all...]
/external/chromium_org/ui/events/gesture_detection/
H A Dsnap_scroll_controller.cc24 std::abs(hypot(static_cast<float>(display.bounds().width()),
/external/libvorbis/lib/
H A Dos.h61 # define FAST_HYPOT hypot
/external/chromium_org/mojo/examples/sample_app/
H A Dgles2_client_impl.cc21 return hypot(static_cast<float>(start.x - end.x),
/external/eigen/Eigen/src/Eigen2Support/
H A DSVD.h318 Scalar t(numext::hypot(m_sigma[j],f));
347 Scalar t(numext::hypot(m_sigma[j],f));
395 Scalar t = numext::hypot(f,g);
413 t = numext::hypot(f,g);
/external/libcxx/test/numerics/c.math/
H A Dcmath.disabled.cpp893 static_assert((std::is_same<decltype(std::hypot((float)0, (float)0)), float>::value), "");
894 static_assert((std::is_same<decltype(std::hypot((bool)0, (float)0)), double>::value), "");
895 static_assert((std::is_same<decltype(std::hypot((unsigned short)0, (double)0)), double>::value), "");
896 static_assert((std::is_same<decltype(std::hypot((int)0, (long double)0)), long double>::value), "");
897 static_assert((std::is_same<decltype(std::hypot((float)0, (unsigned int)0)), double>::value), "");
898 static_assert((std::is_same<decltype(std::hypot((double)0, (long)0)), double>::value), "");
899 static_assert((std::is_same<decltype(std::hypot((long double)0, (unsigned long)0)), long double>::value), "");
900 static_assert((std::is_same<decltype(std::hypot((int)0, (long long)0)), double>::value), "");
901 static_assert((std::is_same<decltype(std::hypot((int)0, (unsigned long long)0)), double>::value), "");
902 static_assert((std::is_same<decltype(std::hypot((doubl
[all...]
/external/bison/darwin-lib/
H A Dmath.h1364 # undef hypot
1365 # define hypot rpl_hypot
1367 _GL_FUNCDECL_RPL (hypot, double, (double x, double y));
1368 _GL_CXXALIAS_RPL (hypot, double, (double x, double y));
1370 _GL_CXXALIAS_SYS (hypot, double, (double x, double y));
1372 _GL_CXXALIASWARN (hypot);
1374 # undef hypot macro
1376 _GL_WARN_ON_USE (hypotf, "hypot has portability problems - "
1377 "use gnulib module hypot for portability");
/external/bison/lib/
H A Dmath.in.h1052 # undef hypot macro
1053 # define hypot rpl_hypot macro
1055 _GL_FUNCDECL_RPL (hypot, double, (double x, double y));
1056 _GL_CXXALIAS_RPL (hypot, double, (double x, double y));
1058 _GL_CXXALIAS_SYS (hypot, double, (double x, double y));
1060 _GL_CXXALIASWARN (hypot); variable
1062 # undef hypot macro
1064 _GL_WARN_ON_USE (hypotf, "hypot has portability problems - "
1065 "use gnulib module hypot for portability");
/external/bison/linux-lib/
H A Dmath.h1364 # undef hypot
1365 # define hypot rpl_hypot
1367 _GL_FUNCDECL_RPL (hypot, double, (double x, double y));
1368 _GL_CXXALIAS_RPL (hypot, double, (double x, double y));
1370 _GL_CXXALIAS_SYS (hypot, double, (double x, double y));
1372 _GL_CXXALIASWARN (hypot);
1374 # undef hypot macro
1376 _GL_WARN_ON_USE (hypotf, "hypot has portability problems - "
1377 "use gnulib module hypot for portability");
/external/clang/lib/Headers/
H A Dtgmath.h825 // hypot
833 __tg_hypot(double __x, double __y) {return hypot(__x, __y);}
839 #undef hypot macro
840 #define hypot(__x, __y) __tg_hypot(__tg_promote2((__x), (__y))(__x), \ macro
/external/eigen/Eigen/src/Core/
H A DMathFunctions.h281 * Implementation of hypot *
611 inline EIGEN_MATHFUNC_RETVAL(hypot, Scalar) hypot(const Scalar& x, const Scalar& y) function in namespace:Eigen::numext
613 return EIGEN_MATHFUNC_IMPL(hypot, Scalar)::run(x, y);
/external/libcxx/test/depr/depr.c.headers/
H A Dmath_h.disabled.cpp435 static_assert((std::is_same<decltype(hypot((double)0, (double)0)), double>::value), "");
438 assert(hypot(3,4) == 5);
/external/ltrace/etc/
H A Dlibm.so.conf360 double hypot(double, double);
/external/eigen/Eigen/src/Eigenvalues/
H A DSelfAdjointEigenSolver.h756 RealScalar h = numext::hypot(td,e);
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h434 RealScalar t2d2 = numext::hypot(t,d);
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h378 friend const mpreal hypot (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode = mpreal::get_default_rnd());
2126 inline const mpreal hypot (const mpreal& x, const mpreal& y, mp_rnd_t rnd_mode) function in namespace:mpfr
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 779 milliseconds