Searched defs:R2MinusQ3 (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCubicUtilities.cpp123 double R2MinusQ3 = R * R - Q3;
128 if (R2MinusQ3 < 0) // we have 3 real roots
147 double A = fabs(R) + sqrt(R2MinusQ3);
221 double R2MinusQ3 = R2 - Q3; local
226 if (approximately_zero_squared(R2MinusQ3) && AlmostEqualUlps(R2, Q3)) {
238 if (R2MinusQ3 < 0) // we have 3 real roots
257 double sqrtR2MinusQ3 = sqrt(R2MinusQ3);
/external/skia/experimental/Intersection/
H A DCubicUtilities.cpp123 double R2MinusQ3 = R * R - Q3;
128 if (R2MinusQ3 < 0) // we have 3 real roots
147 double A = fabs(R) + sqrt(R2MinusQ3);
221 double R2MinusQ3 = R2 - Q3; local
226 if (approximately_zero_squared(R2MinusQ3) && AlmostEqualUlps(R2, Q3)) {
238 if (R2MinusQ3 < 0) // we have 3 real roots
257 double sqrtR2MinusQ3 = sqrt(R2MinusQ3);
/external/chromium_org/third_party/skia/src/pathops/
H A DSkPathOpsCubic.cpp252 double R2MinusQ3 = R2 - Q3; local
256 if (R2MinusQ3 < 0) { // we have 3 real roots
272 double sqrtR2MinusQ3 = sqrt(R2MinusQ3);
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp252 double R2MinusQ3 = R2 - Q3; local
256 if (R2MinusQ3 < 0) { // we have 3 real roots
272 double sqrtR2MinusQ3 = sqrt(R2MinusQ3);

Completed in 840 milliseconds