Searched refs:approximately_zero_when_compared_to (Results 1 - 8 of 8) sorted by relevance

/external/skia/tests/
H A DPathOpsCubicLineIntersectionIdeas.cpp102 && approximately_zero_when_compared_to(A, B)
103 && approximately_zero_when_compared_to(A, C)
104 && approximately_zero_when_compared_to(A, D)) { // we're just a quadratic
107 if (approximately_zero_when_compared_to(D, A)
108 && approximately_zero_when_compared_to(D, B)
109 && approximately_zero_when_compared_to(D, C)) { // 0 is one root
H A DPathOpsAngleIdeas.cpp254 return approximately_zero_when_compared_to(pt1.fX - pt2.fX, max)
255 && approximately_zero_when_compared_to(pt1.fY - pt2.fY, max);
/external/skia/src/pathops/
H A DSkPathOpsCubic.cpp225 if (!approximately_zero_when_compared_to(distance, largest)) {
229 return approximately_zero_when_compared_to(distance, largest);
381 && approximately_zero_when_compared_to(A, B)
382 && approximately_zero_when_compared_to(A, C)
383 && approximately_zero_when_compared_to(A, D)) { // we're just a quadratic
386 if (approximately_zero_when_compared_to(D, A)
387 && approximately_zero_when_compared_to(D, B)
388 && approximately_zero_when_compared_to(D, C)) { // 0 is one root
H A DSkPathOpsQuad.cpp155 return approximately_zero_when_compared_to(distance, largest);
H A DSkDConicLineIntersection.cpp63 return approximately_zero_when_compared_to(a - b, max);
H A DSkPathOpsTypes.h268 inline bool approximately_zero_when_compared_to(double x, double y) { function
H A DSkPathOpsTSect.h600 if (approximately_zero_when_compared_to(test, maxVal)) {
/external/skia/src/core/
H A DSkPath.cpp2054 static bool approximately_zero_when_compared_to(double x, double y) { function
2147 if (!approximately_zero_when_compared_to(dCross, SkScalarToDouble(largest))) {

Completed in 162 milliseconds