Lines Matching refs:lh
62 SkOpAngle* lh = test; in after() local
63 SkOpAngle* rh = lh->fNext; in after()
64 SkASSERT(lh != rh); in after()
70 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd, in after()
71 lh->fStart->t(), lh->fEnd->t(), in after()
75 SkString bugPart[3] = { lh->debugPart(), this->debugPart(), rh->debugPart() }; in after()
77 if (lh->fComputeSector && !lh->computeSector()) { in after()
90 lh->segment()->debugID(), lh->debugID(), lh->fSectorStart, lh->fSectorEnd, in after()
91 lh->fStart->t(), lh->fEnd->t(), in after()
96 bool ltrOverlap = (lh->fSectorMask | rh->fSectorMask) & fSectorMask; in after()
97 bool lrOverlap = lh->fSectorMask & rh->fSectorMask; in after()
101 return COMPARE_RESULT(4, (lh->fSectorEnd > rh->fSectorStart) in after()
102 ^ (fSectorStart > lh->fSectorEnd) ^ (fSectorStart > rh->fSectorStart)); in after()
104 int lrGap = (rh->fSectorStart - lh->fSectorStart + 32) & 0x1f; in after()
117 lrOrder = (int) lh->orderable(rh); in after()
123 SkASSERT((lh->fSectorMask & fSectorMask) || (rh->fSectorMask & fSectorMask)); in after()
124 if (lh->fSectorMask & fSectorMask) { in after()
125 ltOrder = (int) lh->orderable(this); in after()
127 int ltGap = (fSectorStart - lh->fSectorStart + 32) & 0x1f; in after()
147 SkDEBUGCODE(bool lrOpposite = lh->oppositePlanes(rh)); in after()
148 bool ltOpposite = lh->oppositePlanes(this); in after()
153 SkDEBUGCODE(bool ltOpposite = lh->oppositePlanes(this)); in after()
160 bool lrOpposite = lh->oppositePlanes(rh); in after()