Lines Matching full:width

29 	int width = (vc->vc_font.width + 7) >> 3;  in ud_update_attr()  local
30 unsigned int cellsize = vc->vc_font.height * width; in ud_update_attr()
33 offset = offset * width; in ud_update_attr()
49 int sx, int dy, int dx, int height, int width) in ud_bmove() argument
57 area.sx = vxres - ((sx + width) * vc->vc_font.width); in ud_bmove()
59 area.dx = vxres - ((dx + width) * vc->vc_font.width); in ud_bmove()
61 area.width = width * vc->vc_font.width; in ud_bmove()
67 int sx, int height, int width) in ud_clear() argument
77 region.dx = vxres - ((sx + width) * vc->vc_font.width); in ud_clear()
78 region.width = width * vc->vc_font.width; in ud_clear()
92 u32 idx = vc->vc_font.width >> 3; in ud_putcs_aligned()
125 u32 shift_low = 0, mod = vc->vc_font.width % 8; in ud_putcs_unaligned()
127 u32 idx = vc->vc_font.width >> 3; in ud_putcs_unaligned()
157 u32 width = (vc->vc_font.width + 7)/8; in ud_putcs() local
158 u32 cellsize = width * vc->vc_font.height; in ud_putcs()
162 u32 mod = vc->vc_font.width % 8, cnt, pitch, size; in ud_putcs()
174 image.dx = vxres - ((xx + count) * vc->vc_font.width); in ud_putcs()
192 image.width = vc->vc_font.width * cnt; in ud_putcs()
193 pitch = ((image.width + 7) >> 3) + scan_align; in ud_putcs()
202 width, cellsize, &image, buf, dst); in ud_putcs()
205 width, cellsize, &image, in ud_putcs()
208 image.dx += image.width; in ud_putcs()
225 unsigned int cw = vc->vc_font.width; in ud_clear_margins()
238 region.width = rw; in ud_clear_margins()
247 region.width = info->var.xres; in ud_clear_margins()
258 int w = (vc->vc_font.width + 7) >> 3, c; in ud_cursor()
311 ops->cursor_state.image.width != vc->vc_font.width || in ud_cursor()
314 ops->cursor_state.image.width = vc->vc_font.width; in ud_cursor()
319 dx = vxres - ((vc->vc_x * vc->vc_font.width) + vc->vc_font.width); in ud_cursor()
402 cursor.image.width = ops->cursor_state.image.width; in ud_cursor()