Searched defs:sqrt (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/util/
H A DFloatMath.java24 * <p>On one platform, {@code FloatMath.sqrt(100)} executes in one third of the
25 * time required by {@code java.lang.Math.sqrt(100)}.</p>
70 * @param value to compute sqrt of
73 public static native float sqrt(float value); method in class:FloatMath
95 * Returns {@code sqrt(}<i>{@code x}</i><sup>{@code 2}</sup>{@code +} <i>
/frameworks/base/tools/layoutlib/bridge/src/android/util/
H A DFloatMath_Delegate.java87 * @param value to compute sqrt of
91 /*package*/ static float sqrt(float value) { method in class:FloatMath_Delegate
92 return (float)Math.sqrt(value);
121 * Returns {@code sqrt(}<i>{@code x}</i><sup>{@code 2}</sup>{@code +} <i>
130 return (float)Math.sqrt(x*x + y*y);
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdRuntimeMath.cpp577 float sqrt(float x) { function

Completed in 90 milliseconds