HomeSort by relevance Sort by last modified time
    Searched refs:hypot (Results 1 - 25 of 46) sorted by null

1 2

  /bionic/libm/src/
w_cabs.c 2 * cabs() wrapper for hypot().
20 return hypot(creal(z), cimag(z));
27 return hypot(creal(*z), cimag(*z));
math_private.h 222 #define __ieee754_hypot hypot
  /external/stlport/src/
complex.cpp 26 // 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));
  /ndk/sources/cxx-stl/stlport/src/
complex.cpp 26 // 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/
_cmath.h 50 // 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...]
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 50 // 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...]
  /libcore/luni/src/main/native/
java_lang_Math.cpp 111 return hypot(a, b);
139 NATIVE_METHOD(Math, hypot, "(DD)D"),
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/lib/gcc/i686-linux/4.4.3/include-fixed/X11/
Xw32defs.h 46 #define hypot _hypot macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/
Xw32defs.h 37 #define hypot _hypot macro
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/X11/
Xw32defs.h 46 #define hypot _hypot macro
  /frameworks/base/tests/CoreTests/android/core/
MathTest.java 292 * @tests java.lang.Math#hypot(double, double)
298 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
301 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
304 Double.POSITIVE_INFINITY, Math.hypot(-758.2587,
307 Double.POSITIVE_INFINITY, Math.hypot(5687.21,
310 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
313 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
315 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
317 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
321 .hypot(12322.12, -2396393.2258), 0D)
    [all...]
StrictMathTest.java 287 * @tests java.lang.StrictMath#hypot(double,double)
294 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
297 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
300 Double.POSITIVE_INFINITY, StrictMath.hypot(-758.2587,
303 Double.POSITIVE_INFINITY, StrictMath.hypot(5687.21,
306 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
309 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
311 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(Double.NaN,
313 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(-345.2680,
317 .hypot(12322.12, -2396393.2258))
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
StrictMathTest.java 448 * @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.12, -2396393.2258))
    [all...]
MathTest.java 506 * @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.12, -2396393.2258), 0D)
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 142 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
tgmath.h 142 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/bits/
mathcalls.h 163 __MATHCALL (hypot,, (_Mdouble_ __x, _Mdouble_ __y));
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
tgmath.h 327 #define hypot(Val1, Val2) __TGMATH_BINARY_REAL_ONLY (Val1, Val2, hypot) macro
  /bionic/libm/include/
math.h 243 double hypot(double, double);
  /development/ndk/platforms/android-3/include/
math.h 243 double hypot(double, double);
  /development/ndk/platforms/android-9/include/
math.h 243 double hypot(double, double);

Completed in 665 milliseconds

1 2