Home
last modified time | relevance | path

Searched refs:oddMan (Results 1 – 4 of 4) sorted by relevance

/external/skia/src/pathops/
DSkPathOpsQuad.cpp23 for (int oddMan = 0; oddMan < kPointCount; ++oddMan) { in hullIntersects() local
25 this->otherPts(oddMan, endPt); in hullIntersects()
30 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; in hullIntersects()
68 void SkDQuad::otherPts(int oddMan, const SkDPoint* endPt[2]) const { in otherPts() argument
70 int end = (oddMan ^ opp) - oddMan; // choose a value not equal to oddMan in otherPts()
DSkPathOpsConic.h83 void otherPts(int oddMan, const SkDPoint* endPt[2]) const { in otherPts()
84 fPts.otherPts(oddMan, endPt); in otherPts()
DSkPathOpsQuad.h78 void otherPts(int oddMan, const SkDPoint* endPt[2]) const;
DSkPathOpsCubic.cpp169 int oddMan = end1 ^ oddManMask; in hullIntersects() local
170 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; in hullIntersects()