HomeSort by relevance Sort by last modified time
    Searched refs:approximately_zero_when_compared_to (Results 1 - 8 of 8) sorted by null

  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 102 && 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
PathOpsAngleIdeas.cpp 254 return approximately_zero_when_compared_to(pt1.fX - pt2.fX, max)
255 && approximately_zero_when_compared_to(pt1.fY - pt2.fY, max);
    [all...]
  /external/skia/src/pathops/
SkPathOpsCubic.cpp 225 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
SkPathOpsQuad.cpp 155 return approximately_zero_when_compared_to(distance, largest);
SkDConicLineIntersection.cpp 63 return approximately_zero_when_compared_to(a - b, max);
SkPathOpsTypes.h 268 inline bool approximately_zero_when_compared_to(double x, double y) { function
SkPathOpsTSect.h 600 if (approximately_zero_when_compared_to(test, maxVal)) {
    [all...]
  /external/skia/src/core/
SkPath.cpp 2054 static bool approximately_zero_when_compared_to(double x, double y) { function
    [all...]

Completed in 212 milliseconds