Home | History | Annotate | Download | only in core

Lines Matching defs:bot

749         int bot = r.fBottom - offsetY;
750 SkASSERT(bot >= prevBot);
751 if (bot > prevBot) {
766 currY->fY = bot - 1;
769 prevBot = bot;
1527 static void adjust_iter(SkAAClip::Iter& iter, int& topA, int& botA, int bot) {
1528 if (bot == botA) {
1554 int top, bot;
1560 bot = botA;
1562 bot = topA = topB;
1569 bot = botB;
1571 bot = topB = topA;
1575 bot = topA = topB = SkMin32(botA, botB);
1584 if (bot > bounds.fBottom) {
1585 bot = bounds.fBottom;
1587 SkASSERT(top < bot);
1590 builder.addRun(bounds.fLeft, bot - 1, 0, bounds.width());
1592 SkASSERT(bot <= bounds.fBottom);
1595 operatorX(builder, bot - 1, rowIterA, rowIterB, proc, bounds);
1598 adjust_iter(iterA, topA, botA, bot);
1599 adjust_iter(iterB, topB, botB, bot);