Searched refs:sk_float_rsqrt_portable (Results 1 – 3 of 3) sorted by relevance
175 static inline float sk_float_rsqrt_portable(float x) { in sk_float_rsqrt_portable() function211 return sk_float_rsqrt_portable(x); in sk_float_rsqrt()216 static inline float sk_float_rsqrt_portable(float x) { return 1.0f / sk_float_sqrt(x); } in sk_float_rsqrt_portable() function
485 test_rsqrt(reporter, sk_float_rsqrt_portable); in DEF_TEST()
75 SkScalar scale = sk_float_rsqrt_portable(magSq); in fast_normalize()