Home
last modified time | relevance | path

Searched refs:xhalf (Results 1 – 2 of 2) sorted by relevance

/external/skia/bench/
DMathBench.cpp129 float xhalf = 0.5f*x; in SkFastInvSqrt() local
133 x = x*(1.5f-xhalf*x*x); in SkFastInvSqrt()
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DFastMath.java589 float xhalf = 0.5f * x; in fastInvSqrt() local
593 x = x * (1.5f - xhalf * x * x); // Newton step, repeating increases accuracy in fastInvSqrt()