Lines Matching refs:width
36 int height, int width) in fbcon_mfb_bmove() argument
41 if (sx == 0 && dx == 0 && width == p->next_line) { in fbcon_mfb_bmove()
42 src = p->screen_base+sy*fontheight(p)*width; in fbcon_mfb_bmove()
43 dest = p->screen_base+dy*fontheight(p)*width; in fbcon_mfb_bmove()
44 fb_memmove(dest, src, height*fontheight(p)*width); in fbcon_mfb_bmove()
49 fb_memmove(dest, src, width); in fbcon_mfb_bmove()
57 fb_memmove(dest, src, width); in fbcon_mfb_bmove()
65 int height, int width) in fbcon_mfb_clear() argument
73 if (sx == 0 && width == p->next_line) { in fbcon_mfb_clear()
75 fb_memset255(dest, height*fontheight(p)*width); in fbcon_mfb_clear()
77 fb_memclear(dest, height*fontheight(p)*width); in fbcon_mfb_clear()
81 fb_memset255(dest, width); in fbcon_mfb_clear()
83 fb_memclear_small(dest, width); in fbcon_mfb_clear()