HomeSort by relevance Sort by last modified time
    Searched refs:hypot (Results 26 - 50 of 203) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/
Xw32defs.h 37 #define hypot _hypot macro
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
PointCloud.java 170 private static float hypot(float x, float y) { method in class:PointCloud
180 float glowDistance = hypot(glowManager.x - point.x, glowManager.y - point.y);
188 float radius = hypot(point.x, point.y);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidMathTest.java 232 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
235 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
238 Double.POSITIVE_INFINITY, Math.hypot(-758.2587,
241 Double.POSITIVE_INFINITY, Math.hypot(5687.21,
244 Double.POSITIVE_INFINITY, Math.hypot(Double.POSITIVE_INFINITY,
247 Double.POSITIVE_INFINITY, Math.hypot(Double.NEGATIVE_INFINITY,
249 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
251 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
255 .hypot(12322.12, -2396393.2258), 0D);
257 Math.hypot(-138.16951162, 0.13817035864), 0D)
    [all...]
OldAndroidStrictMathTest.java 228 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
231 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
234 Double.POSITIVE_INFINITY, StrictMath.hypot(-758.2587,
237 Double.POSITIVE_INFINITY, StrictMath.hypot(5687.21,
240 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.POSITIVE_INFINITY,
243 Double.POSITIVE_INFINITY, StrictMath.hypot(Double.NEGATIVE_INFINITY,
245 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(Double.NaN,
247 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(-345.2680,
251 .hypot(12322.12, -2396393.2258));
253 StrictMath.hypot(-138.16951162, 0.13817035864))
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
PointCloud.java 170 private static float hypot(float x, float y) { method in class:PointCloud
180 float glowDistance = hypot(glowManager.x - point.x, glowManager.y - point.y);
189 float radius = hypot(point.x, point.y);
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
PointCloud.java 170 private static float hypot(float x, float y) { method in class:PointCloud
180 float glowDistance = hypot(glowManager.x - point.x, glowManager.y - point.y);
189 float radius = hypot(point.x, point.y);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_hypot.c 41 * hypot(x,y) is INF if x or y is +INF or -INF; else
42 * hypot(x,y) is NAN if x or y is NAN.
45 * hypot(x,y) returns sqrt(x^2+y^2) with error less
130 __weak_reference(hypot, hypotl);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
HypotTest.java 73 ref[i * (stride - skip) + j] = (float)Math.hypot((double)in[idx], (double)in[idx+stride]);
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
SnapScrollController.java 107 final double screenSize = Math.hypot((double) metrics.widthPixels / metrics.densityDpi,
  /external/chromium_org/mojo/examples/sample_app/
gles2_client_impl.cc 19 return hypot(start.x() - end.x(), start.y() - end.y());
  /frameworks/base/core/java/android/util/
Spline.java 91 float h = FloatMath.hypot(a, b);
  /frameworks/rs/cpu_ref/
rsCpuRuntimeMathFuncs.cpp 61 IMPORT_F32_FN_F32_F32(hypot)
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FlingScroller.java 85 double velocity = Math.hypot(velocityX, velocityY);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
RoundedLine.java 49 final double l = Math.hypot(dx, dy);
GestureStrokeWithPreviewPoints.java 105 mDistanceFromLastSample += Math.hypot(x - mLastX, y - mLastY);
192 final double deltaDistance = Math.hypot(mInterpolator.mP1X - mInterpolator.mP2X,
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
EyePosition.java 173 mX = Utils.clamp((float) (mX + x * t / Math.hypot(mZ, mX)),
175 mY = Utils.clamp((float) (mY + y * t / Math.hypot(mZ, mY)),
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoTouchListener.java 103 final float v = (float) Math.hypot(dX, dY);
208 double distance = Math.hypot(x0 - mInitialTouchX,
  /external/apache-harmony/luni/src/test/api/common/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...]
  /libcore/luni/src/main/native/
java_lang_StrictMath.cpp 134 NATIVE_METHOD(StrictMath, hypot, "!(DD)D"),
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
ProximityInfo.java 179 * (float)Math.hypot(mMostCommonKeyWidth, mMostCommonKeyHeight);
194 final float hitBoxDiagonal = (float)Math.hypot(hitBoxWidth, hitBoxHeight);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.7/lib/gcc/arm-eabi/4.7/include/
tgmath.h 139 #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-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/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/include/
tgmath.h 139 #define hypot(x,y) __TGMATH_REAL_2(x, y, hypot) macro

Completed in 1123 milliseconds

12 3 4 5 6 7 8 9