Lines Matching defs:bot
239 const RArea *top, *bot;
242 bot = other;
246 bot = self;
248 // bot now starts even with or below top
251 // [bot][top] or [top][bot]
254 // Room in top before bot starts? That's one stripe.
255 if(bot->y != top->y) {
257 top->width, bot->y - top->y));
262 RAreaNewStatic(min_x, bot->y,
264 min(RAreaY2(top), RAreaY2(bot)) - max(top->y, bot->y) + 1));
268 if(RAreaY2(top) != RAreaY2(bot)) {
269 if(RAreaY2(bot) < RAreaY2(top)) {
271 // [bot][top] or [top][bot]
274 RAreaNewStatic(top->x, RAreaY2(bot) + 1,
275 top->width, RAreaY2(top) - RAreaY2(bot)));
279 // [bot][top] or [top][bot]
282 RAreaNewStatic(bot->x, RAreaY2(top) + 1,
283 bot->width, RAreaY2(bot) - RAreaY2(top)));