Searched refs:sk_float_sqrt (Results 1 – 12 of 12) sorted by relevance
45 #define sk_float_sqrt(x) sqrtf(x) macro221 static inline float sk_float_rsqrt_portable(float x) { return 1.0f / sk_float_sqrt(x); } in sk_float_rsqrt_portable()222 static inline float sk_float_rsqrt (float x) { return 1.0f / sk_float_sqrt(x); } in sk_float_rsqrt()
92 mag = sk_float_sqrt(mag2); in set_point_length()134 return sk_float_sqrt(mag2); in Length()
29 return sk_float_sqrt(magSq); in Length()
78 return sk_float_sqrt(mag2); in Length()
173 float len = sk_float_sqrt(x*x + y*y); in check_length()263 float exact = 1.0f/sk_float_sqrt(input); in test_rsqrt()273 float exact = 1.0f/sk_float_sqrt(input); in test_rsqrt()283 float exact = 1.0f/sk_float_sqrt(input); in test_rsqrt()
171 float len = sk_float_sqrt(x*x + y*y); in check_length()261 float exact = 1.0f/sk_float_sqrt(input); in test_rsqrt()271 float exact = 1.0f/sk_float_sqrt(input); in test_rsqrt()281 float exact = 1.0f/sk_float_sqrt(input); in test_rsqrt()
38 #define sk_float_sqrt(x) sqrtf(x) macro
41 #define SkScalarSqrt(x) sk_float_sqrt(x)
122 dst[i] = 1.0f / sk_float_sqrt(src[i]); in performTest()