Lines Matching refs:bounded
49 SkTSpanBounded* bounded = heap->make<SkTSpanBounded>(); in addBounded() local
50 bounded->fBounded = span; in addBounded()
51 bounded->fNext = fBounded; in addBounded()
52 fBounded = bounded; in addBounded()
154 SkTSpanBounded* bounded = fBounded; in findOppSpan() local
155 while (bounded) { in findOppSpan()
156 SkTSpan* test = bounded->fBounded; in findOppSpan()
160 bounded = bounded->fNext; in findOppSpan()
342 SkTSpanBounded* bounded = fBounded; in oppT() local
343 while (bounded) { in oppT()
344 SkTSpan* test = bounded->fBounded; in oppT()
348 bounded = bounded->fNext; in oppT()
355 SkTSpanBounded* bounded = fBounded; in removeAllBounded() local
356 while (bounded) { in removeAllBounded()
357 SkTSpan* opp = bounded->fBounded; in removeAllBounded()
359 bounded = bounded->fNext; in removeAllBounded()
368 SkTSpanBounded* bounded = fBounded; in removeBounded() local
369 while (bounded) { in removeBounded()
370 SkTSpan* test = bounded->fBounded; in removeBounded()
375 bounded = bounded->fNext; in removeBounded()
383 SkTSpanBounded* bounded = fBounded; in removeBounded() local
385 while (bounded) { in removeBounded()
386 SkTSpanBounded* boundedNext = bounded->fNext; in removeBounded()
387 if (opp == bounded->fBounded) { in removeBounded()
396 prev = bounded; in removeBounded()
397 bounded = boundedNext; in removeBounded()
425 SkTSpanBounded* bounded = work->fBounded; in splitAt() local
427 while (bounded) { in splitAt()
428 this->addBounded(bounded->fBounded, heap); in splitAt()
429 bounded = bounded->fNext; in splitAt()
431 bounded = fBounded; in splitAt()
432 while (bounded) { in splitAt()
433 bounded->fBounded->addBounded(this, heap); in splitAt()
434 bounded = bounded->fNext; in splitAt()
1346 SkTSpan* bounded = testBounded->fBounded; in removeAllBut() local
1349 if (bounded != keep && !bounded->fDeleted) { in removeAllBut()
1350 SkAssertResult(SkDEBUGCODE(!) span->removeBounded(bounded)); in removeAllBut()
1351 if (bounded->removeBounded(span)) { in removeAllBut()
1352 opp->removeSpan(bounded); in removeAllBut()
1440 SkTSpanBounded* bounded = span->fBounded; in removeSpans() local
1441 while (bounded) { in removeSpans()
1442 SkTSpan* spanBounded = bounded->fBounded; in removeSpans()
1443 SkTSpanBounded* next = bounded->fNext; in removeSpans()
1453 bounded = next; in removeSpans()