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

/frameworks/base/core/java/android/util/
H A DFloatMath.java71 * @param value to compute sqrt of
74 public static native float sqrt(float value); method in class:FloatMath
96 * 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);

Completed in 5 milliseconds