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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
hypot_arm.s 7 TEXT ·Hypot(SB),NOSPLIT,$0
8 B ·hypot(SB)
export_test.go 10 var HypotGo = hypot
export_s390x_test.go 30 var HypotNovec = hypot
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_arm.s 7 TEXT ·Hypot(SB),NOSPLIT,$0
8 B ·hypot(SB)
export_test.go 10 var HypotGo = hypot
export_s390x_test.go 30 var HypotNovec = hypot
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
  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestHypot.rs 26 return hypot(inA, inB);
31 return hypot(inA, inB);
36 return hypot(inA, inB);
41 return hypot(inA, inB);
46 return hypot(inA, inB);
51 return hypot(inA, inB);
56 return hypot(inA, inB);
61 return hypot(inA, inB);
  /external/ltp/testcases/misc/math/float/
float_exp_log.c 37 {FUNC_HYPOT, 50, hypot, "hypot", "hypot_inp.ref", "hypot_out.ref",
  /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
  /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);
  /bionic/libm/upstream-freebsd/lib/msun/src/
w_cabs.c 2 * cabs() wrapper for hypot().
18 return hypot(creal(z), cimag(z));
s_csqrtf.c 82 t = sqrt((a + hypot(a, b)) * 0.5);
85 t = sqrt((-a + hypot(a, b)) * 0.5);
s_csqrt.c 96 t = sqrt((a + hypot(a, b)) * 0.5);
99 t = sqrt((-a + hypot(a, b)) * 0.5);
  /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...]
  /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...]
  /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/clang/test/CodeGen/
mandel.c 41 if (hypot(__real__ z, __imag__ z) >= ESCAPE)
  /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/services/accessibility/java/com/android/server/accessibility/
GestureUtils.java 60 final float firstMagnitude = (float) Math.hypot(firstDeltaX, firstDeltaY);
73 final float secondMagnitude = (float) Math.hypot(secondDeltaX, secondDeltaY);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
BogusMoveEventDetector.java 69 final float keyDiagonal = (float)Math.hypot(keyWidth, keyHeight);
108 return (int)Math.hypot(x1 - x2, y1 - y2);
  /frameworks/base/core/java/android/transition/
PatternPathMotion.java 120 float distance = (float) Math.hypot(dx, dy);
133 float length = (float) Math.hypot(dx, dy);

Completed in 441 milliseconds

1 2 3 4 5 6 7 8 91011>>