Lines Matching full:width
29 int width = (vc->vc_font.height + 7) >> 3; in cw_update_attr() local
32 for (i = 0; i < vc->vc_font.width; i++) { in cw_update_attr()
33 for (j = 0; j < width; j++) { in cw_update_attr()
38 c |= *(src-width); in cw_update_attr()
49 int sx, int dy, int dx, int height, int width) in cw_bmove() argument
56 area.sy = sx * vc->vc_font.width; in cw_bmove()
58 area.dy = dx * vc->vc_font.width; in cw_bmove()
59 area.width = height * vc->vc_font.height; in cw_bmove()
60 area.height = width * vc->vc_font.width; in cw_bmove()
66 int sx, int height, int width, int fg, int bg) in cw_clear() argument
74 region.dy = sx * vc->vc_font.width; in cw_clear()
75 region.height = width * vc->vc_font.width; in cw_clear()
76 region.width = height * vc->vc_font.height; in cw_clear()
102 vc->vc_font.width); in cw_putcs_aligned()
105 vc->vc_font.width); in cw_putcs_aligned()
107 dst += d_pitch * vc->vc_font.width; in cw_putcs_aligned()
119 u32 width = (vc->vc_font.height + 7)/8; in cw_putcs() local
120 u32 cellsize = width * vc->vc_font.width; in cw_putcs()
135 image.dy = xx * vc->vc_font.width; in cw_putcs()
136 image.width = vc->vc_font.height; in cw_putcs()
151 image.height = vc->vc_font.width * cnt; in cw_putcs()
152 pitch = ((image.width + 7) >> 3) + scan_align; in cw_putcs()
159 width, cellsize, &image, buf, dst); in cw_putcs()
176 unsigned int cw = vc->vc_font.width; in cw_clear_margins()
190 region.width = info->var.xres_virtual; in cw_clear_margins()
198 region.width = bh; in cw_clear_margins()
223 src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width)); in cw_cursor()
234 dst = kmalloc_array(w, vc->vc_font.width, GFP_ATOMIC); in cw_cursor()
251 if (ops->cursor_state.image.height != vc->vc_font.width || in cw_cursor()
252 ops->cursor_state.image.width != vc->vc_font.height || in cw_cursor()
254 ops->cursor_state.image.height = vc->vc_font.width; in cw_cursor()
255 ops->cursor_state.image.width = vc->vc_font.height; in cw_cursor()
260 dy = vc->state.x * vc->vc_font.width; in cw_cursor()
280 char *tmp, *mask = kmalloc_array(w, vc->vc_font.width, in cw_cursor()
283 int width = (vc->vc_font.width + 7)/8; in cw_cursor() local
288 tmp = kmalloc_array(width, vc->vc_font.height, GFP_ATOMIC); in cw_cursor()
323 size = (vc->vc_font.height - cur_height) * width; in cw_cursor()
326 size = cur_height * width; in cw_cursor()
329 memset(mask, 0, w * vc->vc_font.width); in cw_cursor()
330 rotate_cw(tmp, mask, vc->vc_font.width, vc->vc_font.height); in cw_cursor()
342 cursor.image.width = ops->cursor_state.image.width; in cw_cursor()