Lines Matching refs:checkEnd
283 const SkOpSpanBase* checkEnd = fEnd; in computeSector() local
284 if (checkEnd->final() && stepUp) { in computeSector()
290 const SkOpSegment* other = checkEnd->segment(); in computeSector()
296 if (oSpan == checkEnd) { in computeSector()
299 if (!approximately_equal(oSpan->t(), checkEnd->t())) { in computeSector()
304 checkEnd = stepUp ? !checkEnd->final() in computeSector()
305 ? checkEnd->upCast()->next() : nullptr in computeSector()
306 : checkEnd->prev(); in computeSector()
307 } while (checkEnd); in computeSector()
309 SkOpSpanBase* computedEnd = stepUp ? checkEnd ? checkEnd->prev() : fEnd->segment()->head() in computeSector()
310 : checkEnd ? checkEnd->upCast()->next() : fEnd->segment()->tail(); in computeSector()
311 if (checkEnd == fEnd || computedEnd == fEnd || computedEnd == fStart) { in computeSector()