Home
last modified time | relevance | path

Searched refs:sk_float_rsqrt_portable (Results 1 – 5 of 5) sorted by relevance

/external/skia/include/private/
DSkFloatingPoint.h180 static inline float sk_float_rsqrt_portable(float x) { in sk_float_rsqrt_portable() function
216 return sk_float_rsqrt_portable(x); in sk_float_rsqrt()
221 static inline float sk_float_rsqrt_portable(float x) { return 1.0f / sk_float_sqrt(x); } in sk_float_rsqrt_portable() function
/external/skqp/include/private/
DSkFloatingPoint.h147 static inline float sk_float_rsqrt_portable(float x) { in sk_float_rsqrt_portable() function
183 return sk_float_rsqrt_portable(x); in sk_float_rsqrt()
/external/skqp/tests/
DMathTest.cpp454 test_rsqrt(reporter, sk_float_rsqrt_portable); in DEF_TEST()
/external/skia/tests/
DMathTest.cpp485 test_rsqrt(reporter, sk_float_rsqrt_portable); in DEF_TEST()
/external/skia/src/effects/imagefilters/
DSkLightingImageFilter.cpp78 SkScalar scale = sk_float_rsqrt_portable(magSq); in fast_normalize()