Home
last modified time | relevance | path

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

/external/skia/src/pathops/
DSkPathOpsQuad.cpp45 for (int oddMan = 0; oddMan < kPointCount; ++oddMan) { in hullIntersects() local
47 this->otherPts(oddMan, endPt); in hullIntersects()
52 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; in hullIntersects()
98 void SkDQuad::otherPts(int oddMan, const SkDPoint* endPt[2]) const { in otherPts() argument
100 int end = (oddMan ^ opp) - oddMan; // choose a value not equal to oddMan in otherPts()
DSkPathOpsConic.h91 void otherPts(int oddMan, const SkDPoint* endPt[2]) const { in otherPts()
92 fPts.otherPts(oddMan, endPt); in otherPts()
DSkPathOpsQuad.h86 void otherPts(int oddMan, const SkDPoint* endPt[2]) const;
DSkPathOpsCubic.cpp166 int oddMan = end1 ^ oddManMask; in hullIntersects() local
167 double sign = (fPts[oddMan].fY - origY) * adj - (fPts[oddMan].fX - origX) * opp; in hullIntersects()