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

1 2 3 4 5 6 7 8 91011>>

  /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 {
hypot_arm.s 7 TEXT ·Hypot(SB),NOSPLIT,$0
8 B ·hypot(SB)
export_test.go 10 var HypotGo = hypot
hypot_amd64.s 10 // func Hypot(p, q float64) float64
11 TEXT ·Hypot(SB),NOSPLIT,$0
23 // hypot = max * sqrt(1 + (min/max)**2)
stubs_arm64.s 51 TEXT ·Hypot(SB),NOSPLIT,$0
52 B ·hypot(SB)
  /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 {
hypot_arm.s 7 TEXT ·Hypot(SB),NOSPLIT,$0
8 B ·hypot(SB)
export_test.go 10 var HypotGo = hypot
hypot_amd64.s 10 // func Hypot(p, q float64) float64
11 TEXT ·Hypot(SB),NOSPLIT,$0
23 // hypot = max * sqrt(1 + (min/max)**2)
  /external/v8/test/mjsunit/es6/
math-hypot.js 28 assertTrue(isNaN(Math.hypot({})));
29 assertTrue(isNaN(Math.hypot(undefined, 1)));
30 assertTrue(isNaN(Math.hypot(1, undefined)));
31 assertTrue(isNaN(Math.hypot(Math.hypot, 1)));
32 assertEquals(1, Math.hypot(1));
33 assertEquals(Math.PI, Math.hypot(Math.PI));
34 assertEquals(5, Math.hypot(3, 4));
35 assertEquals(13, Math.hypot(3, 4, 12));
36 assertEquals(15, Math.hypot(" 2 "
    [all...]
  /bionic/libm/upstream-freebsd/lib/msun/src/
w_cabs.c 2 * cabs() wrapper for hypot().
18 return hypot(creal(z), cimag(z));
w_cabsl.c 2 * cabs() wrapper for hypot().
  /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/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/skia/src/utils/
SkMatrix22.h 17 * G * h = [hypot(h), 0]
26 * but has better numerical stability by using (partial) hypot,
  /prebuilts/go/darwin-x86/src/math/cmplx/
abs.go 12 func Abs(x complex128) float64 { return math.Hypot(real(x), imag(x)) }
  /prebuilts/go/linux-x86/src/math/cmplx/
abs.go 12 func Abs(x complex128) float64 { return math.Hypot(real(x), imag(x)) }
  /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 */
  /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...]
  /development/ndk/platforms/android-13/arch-arm/symbols/
libm.so.functions.txt 69 hypot
  /development/ndk/platforms/android-13/arch-mips/symbols/
libm.so.functions.txt 69 hypot
  /development/ndk/platforms/android-3/arch-arm/symbols/
libm.so.functions.txt 69 hypot
  /development/ndk/platforms/android-9/arch-arm/symbols/
libm.so.functions.txt 69 hypot
  /development/ndk/platforms/android-9/arch-mips/symbols/
libm.so.functions.txt 69 hypot

Completed in 856 milliseconds

1 2 3 4 5 6 7 8 91011>>