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

/external/clang/test/CodeGen/
H A Dmandel.c41 if (hypot(__real__ z, __imag__ z) >= ESCAPE)
/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));
250 r._M_re = ::log(::hypot(z._M_re, z._M_im));
287 _Tp logr = ::log(::hypot(a._M_re,a._M_im));
297 _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/libvorbis/lib/
H A Dos.h61 # define FAST_HYPOT hypot
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
H A DStrictMathTest.java448 * @tests java.lang.StrictMath#hypot(double, double)
454 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
457 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
460 Double.POSITIVE_INFINITY, StrictMath.hypot(-758.2587,
463 Double.POSITIVE_INFINITY, StrictMath.hypot(5687.21,
466 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
469 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
471 assertTrue("Should return NaN",Double.isNaN(StrictMath.hypot(Double.NaN,
473 assertTrue("Should return NaN",Double.isNaN(StrictMath.hypot(-345.2680,
477 .hypot(12322.1
[all...]
H A DMathTest.java506 * @tests java.lang.Math#hypot(double, double)
511 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
514 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
517 Double.POSITIVE_INFINITY, Math.hypot(-758.2587,
520 Double.POSITIVE_INFINITY, Math.hypot(5687.21,
523 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
526 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
528 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
530 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
534 .hypot(12322.1
[all...]
/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DPathOpenVG.cpp251 double d01 = hypot(v01.width(), v01.height());
252 double d21 = hypot(v21.width(), v21.height());
/external/clang/lib/include/
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/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

Completed in 239 milliseconds