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

1 2 3 4

  /bionic/libm/x86_64/
e_hypot.S 58 // hypot(x,y), hypot(y,x), and hypot(x,-y) are equivalent
59 // hypot(x,+-0) is equivalent to fabs(x)
60 // hypot(x,y) = y if (x==NaN or x==INF) and y==INF
61 // hypot(x,y) = x if (x==NaN or x==INF) and y!=INF (even if y==NaN!)
62 // hypot(x,y) = y if (x!=NaN and x!=INF) and (y==NaN or y==INF)
67 # -- Begin hypot
68 ENTRY(hypot) function
177 END(hypot)
    [all...]
  /bionic/libm/x86/
e_hypot.S 58 // hypot(x,y), hypot(y,x), and hypot(x,-y) are equivalent
59 // hypot(x,+-0) is equivalent to fabs(x)
60 // hypot(x,y) = y if (x==NaN or x==INF) and y==INF
61 // hypot(x,y) = x if (x==NaN or x==INF) and y!=INF (even if y==NaN!)
62 // hypot(x,y) = y if (x!=NaN and x!=INF) and (y==NaN or y==INF)
82 # -- Begin hypot
83 ENTRY(hypot) function
198 END(hypot)
    [all...]
  /prebuilts/go/darwin-x86/src/math/
hypot.go 8 Hypot -- sqrt(p*p + q*q), but overflows only if the result does.
11 // Hypot returns Sqrt(p*p + q*q), taking care to avoid
15 // Hypot(ħInf, q) = +Inf
16 // Hypot(p, ħInf) = +Inf
17 // Hypot(NaN, q) = NaN
18 // Hypot(p, NaN) = NaN
19 func Hypot(p, q float64) float64
21 func hypot(p, q float64) float64 { func
  /prebuilts/go/linux-x86/src/math/
hypot.go 8 Hypot -- sqrt(p*p + q*q), but overflows only if the result does.
11 // Hypot returns Sqrt(p*p + q*q), taking care to avoid
15 // Hypot(ħInf, q) = +Inf
16 // Hypot(p, ħInf) = +Inf
17 // Hypot(NaN, q) = NaN
18 // Hypot(p, NaN) = NaN
19 func Hypot(p, q float64) float64
21 func hypot(p, q float64) float64 { func
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pymath.c 35 double hypot(double x, double y) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pymath.c 35 double hypot(double x, double y) function
  /external/dng_sdk/source/
dng_types.h 103 // Visual Studio now prefers _hypot to hypot
104 // Note: since Visual Studio 2010, there is a definition of hypot (in math.h),
105 // we only define hypot here for the older Visual Studio versions.
109 #ifdef hypot
110 #undef hypot macro
113 #define hypot _hypot macro
  /external/python/cpython2/Python/
pymath.c 35 double hypot(double x, double y) function
  /external/python/cpython3/Python/
pymath.c 35 double hypot(double x, double y) function
  /frameworks/base/core/java/android/util/
FloatMath.java 130 public static float hypot(float x, float y) { method in class:FloatMath
131 return (float) Math.hypot(x, y);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
collections.py 708 def hypot(self): member in class:Counter.Point
711 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
collections.py 645 def hypot(self): member in class:Counter.Point
648 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
  /external/python/cpython2/Lib/
collections.py 720 def hypot(self): member in class:Counter.Point
723 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
  /libcore/ojluni/src/main/java/java/lang/
StrictMath.java 57 * {@code hypot}, {@code expm1}, and {@code log1p}.
1314 public static native double hypot(double x, double y); method in class:StrictMath
    [all...]
Math.java 1691 public static native double hypot(double x, double y); method in class:Math
    [all...]
  /libcore/ojluni/src/main/native/
jfdlibm.h 60 #define hypot jhypot macro
  /prebuilts/gdb/darwin-x86/lib/python2.7/
collections.py 671 def hypot(self): member in class:Counter.Point
674 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
  /prebuilts/gdb/linux-x86/lib/python2.7/
collections.py 671 def hypot(self): member in class:Counter.Point
674 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
collections.py 671 def hypot(self): member in class:Counter.Point
674 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
collections.py 671 def hypot(self): member in class:Counter.Point
674 return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
  /external/ImageMagick/MagickCore/
nt-base.h 143 #if !defined(hypot)
144 # define hypot _hypot macro
  /libcore/benchmarks/src/benchmarks/regression/
StrictMathBenchmark.java 179 StrictMath.hypot(d, d);
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin10/4.2.1/include/
tgmath.h 150 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/lib/gcc/i686-apple-darwin11/4.2.1/include/
tgmath.h 150 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xw32defs.h 35 # define hypot _hypot macro

Completed in 402 milliseconds

1 2 3 4