HomeSort by relevance Sort by last modified time
    Searched refs:hypot (Results 1 - 25 of 311) 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)
  /prebuilts/go/linux-x86/src/math/
hypot_arm.s 7 TEXT ·Hypot(SB),NOSPLIT,$0
8 B ·hypot(SB)
  /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/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...]
  /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...]
  /external/clang/test/CodeGen/
mandel.c 41 if (hypot(__real__ z, __imag__ z) >= ESCAPE)
  /external/opencv3/3rdparty/openexr/Imath/
ImathMath.h 119 static T hypot (T x, T y) {return ::hypot (double(x), double(y));} function in struct:Imath::Math
147 static float hypot (float x, float y) {return ::hypotf (x, y);} function in struct:Imath::Math
149 static float hypot (float x, float y) {return ::sqrtf(x*x + y*y);} function in struct:Imath::Math
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
binary_func.hpp 69 CV_CUDEV_EXPR_BINARY_FUNC(hypot)
  /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);
  /external/opencv3/modules/core/include/opencv2/core/cuda/
vec_math.hpp     [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/util/
vec_math.hpp     [all...]
  /frameworks/base/core/java/android/transition/
PatternPathMotion.java 120 float distance = (float) Math.hypot(dx, dy);
133 float length = (float) Math.hypot(dx, dy);
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
GestureUtils.java 72 final float firstMagnitude = (float) Math.hypot(firstDeltaX, firstDeltaY);
85 final float secondMagnitude = (float) Math.hypot(secondDeltaX, secondDeltaY);
  /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));
256 r._M_re = ::log(::hypot(z._M_re, z._M_im));
293 _Tp logr = ::log(::hypot(a._M_re,a._M_im));
303 _Tp logr = ::log(::hypot(a._M_re,a._M_im));
  /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...]
  /prebuilts/ndk/current/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...]
  /developers/build/prebuilts/gradle/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /developers/samples/android/ui/views/RevealEffect/RevealEffectBasic/Application/src/main/java/com/example/android/revealeffectbasic/
RevealEffectBasicFragment.java 64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));
  /development/samples/browseable/RevealEffectBasic/src/com.example.android.revealeffectbasic/
RevealEffectBasicFragment.java 64 (float) Math.hypot(shape.getWidth(), shape.getHeight()));

Completed in 1212 milliseconds

1 2 3 4 5 6 7 8 91011>>