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

1 2 3

  /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));
e_hypot.c 42 * hypot(x,y) is INF if x or y is +INF or -INF; else
43 * hypot(x,y) is NAN if x or y is NAN.
46 * hypot(x,y) returns sqrt(x^2+y^2) with error less
  /bionic/libm/man/
hypot.3 32 .\" from: @(#)hypot.3 6.7 (Berkeley) 5/6/91
33 .\" $FreeBSD: src/lib/msun/man/hypot.3,v 1.13 2005/01/14 23:28:28 das Exp $
36 .Dt HYPOT 3
39 .Nm hypot ,
49 .Fn hypot "double x" "double y"
59 .Fn hypot
74 .Fn hypot "\*(If" "v"
76 .Fn hypot "v" "\*(If"
84 .Fn hypot "5.0" "12.0"
87 in general, hypot and cabs return an integer whenever a
    [all...]
atan2.3 141 r := hypot(x,y); ... := sqrt(x\(**x+y\(**y)
145 r := hypot(x,y); ... := \(sr(x\u\s82\s10\d+y\u\s82\s10\d)
155 .Xr hypot 3
  /external/fdlibm/
w_hypot.c 22 double ieee_hypot(double x, double y)/* wrapper hypot */
24 double ieee_hypot(x,y) /* wrapper hypot */
35 return __kernel_standard(x,y,4); /* hypot overflow */
e_hypot.c 38 * hypot(x,y) is INF if x or y is +INF or -INF; else
39 * hypot(x,y) is NAN if x or y is NAN.
42 * hypot(x,y) returns ieee_sqrt(x^2+y^2) with error less
  /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/android/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/android/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"),
java_lang_StrictMath.cpp 155 NATIVE_METHOD(StrictMath, hypot, "(DD)D"),
  /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...]
  /bionic/libm/
Makefile-orig 95 fma.3 fmax.3 fmod.3 hypot.3 ieee.3 ieee_test.3 ilogb.3 j0.3 \
131 MLINKS+=hypot.3 cabs.3 hypot.3 cabsf.3 hypot.3 hypotf.3
  /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
  /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...]
  /libcore/luni/src/main/java/java/lang/
StrictMath.java 356 * <li>{@code hypot(+infinity, (anything including NaN)) = +infinity}</li>
357 * <li>{@code hypot(-infinity, (anything including NaN)) = +infinity}</li>
358 * <li>{@code hypot((anything including NaN), +infinity) = +infinity}</li>
359 * <li>{@code hypot((anything including NaN), -infinity) = +infinity}</li>
360 * <li>{@code hypot(NaN, NaN) = NaN}</li>
371 public static native double hypot(double x, double y); method in class:StrictMath
    [all...]

Completed in 499 milliseconds

1 2 3