Searched defs:sqrt (Results 1 - 2 of 2) 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
/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);

Completed in 160 milliseconds