Home | History | Annotate | Download | only in core

Lines Matching defs:bot

819         int bot = r.fBottom - offsetY;
820 SkASSERT(bot >= prevBot);
821 if (bot > prevBot) {
836 currY->fY = bot - 1;
839 prevBot = bot;
1586 static void adjust_iter(SkAAClip::Iter& iter, int& topA, int& botA, int bot) {
1587 if (bot == botA) {
1613 int top, bot;
1619 bot = botA;
1621 bot = topA = topB;
1628 bot = botB;
1630 bot = topB = topA;
1634 bot = topA = topB = SkMin32(botA, botB);
1643 if (bot > bounds.fBottom) {
1644 bot = bounds.fBottom;
1646 SkASSERT(top < bot);
1649 builder.addRun(bounds.fLeft, bot - 1, 0, bounds.width());
1651 SkASSERT(bot <= bounds.fBottom);
1654 operatorX(builder, bot - 1, rowIterA, rowIterB, proc, bounds);
1657 adjust_iter(iterA, topA, botA, bot);
1658 adjust_iter(iterB, topB, botB, bot);