OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:sk_float_sqrt
(Results
1 - 8
of
8
) sorted by null
/external/skia/src/core/
SkPoint3.cpp
29
return
sk_float_sqrt
(magSq);
55
scale = 1.0f /
sk_float_sqrt
(magSq);
SkPoint.cpp
109
mag =
sk_float_sqrt
(mag2);
132
return
sk_float_sqrt
(mag2);
157
scale = length /
sk_float_sqrt
(mag2);
/external/skia/include/private/
SkFloatingPoint.h
59
#define
sk_float_sqrt
(x) sqrtf(x)
macro
143
// Compare to name-brand "1.0f /
sk_float_sqrt
(x)". Should be around 10x faster on SSE, 2x on NEON.
/external/skia/tests/
MathTest.cpp
193
float len =
sk_float_sqrt
(x*x + y*y);
390
float exact = 1.0f/
sk_float_sqrt
(input);
400
float exact = 1.0f/
sk_float_sqrt
(input);
410
float exact = 1.0f/
sk_float_sqrt
(input);
/external/skia/include/core/
SkScalar.h
50
#define SkScalarSqrt(x)
sk_float_sqrt
(x)
/external/skia/bench/
MathBench.cpp
120
dst[i] = 1.0f /
sk_float_sqrt
(src[i]);
/external/skia/src/effects/gradients/
SkRadialGradient.cpp
166
const SkFixed dist = SkFloatToFixed(
sk_float_sqrt
(fx*fx + fy*fy));
SkTwoPointConicalGradient.cpp
45
R =
sk_float_sqrt
(R);
Completed in 382 milliseconds