Searched refs:hypot (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/util/
H A DFloatMath.java100 public static native float hypot(float x, float y); method in class:FloatMath
H A DSpline.java168 float h = FloatMath.hypot(a, b);
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DFloatMath_Delegate.java129 /*package*/ static float hypot(float x, float y) { method in class:FloatMath_Delegate
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DNormFilter.java56 float norm = (float) Math.hypot(xValue, yValue);
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DPointCloud.java170 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);
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMathFuncs.cpp61 IMPORT_F32_FN_F32_F32(hypot)
/frameworks/base/core/java/com/android/internal/widget/
H A DWaveView.java208 int dragDistance = (int) Math.ceil(Math.hypot(distX, distY));
440 int dragDistance = (int) Math.ceil(Math.hypot(distX, distY));
546 float dist = (float) Math.hypot(dx, dy);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DTouchExplorer.java481 final double moveDelta = Math.hypot(deltaX, deltaY);
525 final double moveDelta = Math.hypot(deltaX, deltaY);
559 final double moveDelta = Math.hypot(deltaX, deltaY);
678 final double distance = Math.hypot(deltaX, deltaY);
/frameworks/base/core/java/android/widget/
H A DSlidingDrawer.java461 float velocity = (float) Math.hypot(xVelocity, yVelocity);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DSearchPanelCircleView.java390 float maxRadius = (float) Math.ceil(Math.hypot(xMax, yMax) * 2);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DKeyguardAffordanceView.java250 return (float) Math.hypot(width, height);
H A DBaseStatusBar.java881 final float r = (float) Math.hypot(horz, vert);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DPanelView.java334 vectorVel = (float) Math.hypot(
/frameworks/rs/driver/runtime/
H A Drs_cl.c454 extern float __attribute__((overloadable)) hypot(float, float);
455 FN_FUNC_FN_FN(hypot)
1463 THUNK_NATIVE_F_F(hypot)
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DLLand.java843 if (Math.hypot(x-cx, y-cy) <= r) return true;
/frameworks/rs/api/
H A Drs_core_math.spec474 name: hypot
/frameworks/rs/scriptc/
H A Drs_core_math.rsh5482 extern float __attribute__((const, overloadable))hypot(float x, float y);
5491 extern float2 __attribute__((const, overloadable))hypot(float2 x, float2 y);
5500 extern float3 __attribute__((const, overloadable))hypot(float3 x, float3 y);
5509 extern float4 __attribute__((const, overloadable))hypot(float4 x, float4 y);

Completed in 597 milliseconds