Lines Matching refs:height
133 int height, int width) in fbcon_sti_bmove() argument
136 sti_bmove(default_sti /* FIXME */, sy, sx, dy, dx, height, width); in fbcon_sti_bmove()
144 memcpy_fromhp_tohp(dest, src, height*fontheight(p)*width); in fbcon_sti_bmove()
148 for (rows = height*fontheight(p); rows--;) { in fbcon_sti_bmove()
154 src = p->screen_base+((sy+height)*fontheight(p)-1)*p->next_line+sx; in fbcon_sti_bmove()
155 dest = p->screen_base+((dy+height)*fontheight(p)-1)*p->next_line+dx; in fbcon_sti_bmove()
156 for (rows = height*fontheight(p); rows--;) { in fbcon_sti_bmove()
168 int height, int width) in fbcon_sti_clear() argument
178 memset_tohp(dest, ~0, height*fontheight(p)*width); in fbcon_sti_clear()
180 memset_tohp(dest, 0, height*fontheight(p)*width); in fbcon_sti_clear()
182 for (rows = height*fontheight(p); rows--; dest += p->next_line) in fbcon_sti_clear()
283 int height, bottom; in fbcon_sti_clear_margins() local
289 height = p->var.yres - conp->vc_rows * fontheight(p); in fbcon_sti_clear_margins()
290 if (!height) in fbcon_sti_clear_margins()
297 memset_tohp(dest, 0xffffffff, height * p->next_line); in fbcon_sti_clear_margins()
299 memset_tohp(dest, 0x00000000, height * p->next_line); in fbcon_sti_clear_margins()