Lines Matching full:height

28 	int i, j, offset = (vc->vc_font.height < 10) ? 1 : 2;  in cw_update_attr()
29 int width = (vc->vc_font.height + 7) >> 3; in cw_update_attr()
49 int sx, int dy, int dx, int height, int width) in cw_bmove() argument
55 area.sx = vxres - ((sy + height) * vc->vc_font.height); in cw_bmove()
57 area.dx = vxres - ((dy + height) * vc->vc_font.height); 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
73 region.dx = vxres - ((sy + height) * vc->vc_font.height); 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()
89 u32 idx = (vc->vc_font.height + 7) >> 3; in cw_putcs_aligned()
119 u32 width = (vc->vc_font.height + 7)/8; in cw_putcs()
134 image.dx = vxres - ((yy + 1) * vc->vc_font.height); in cw_putcs()
136 image.width = vc->vc_font.height; in cw_putcs()
151 image.height = vc->vc_font.width * cnt; in cw_putcs()
154 size = pitch * image.height + buf_align; in cw_putcs()
160 image.dy += image.height; in cw_putcs()
177 unsigned int ch = vc->vc_font.height; in cw_clear_margins()
189 region.height = rw; in cw_clear_margins()
197 region.height = info->var.yres; in cw_clear_margins()
209 int w = (vc->vc_font.height + 7) >> 3, c; 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()
259 dx = vxres - ((y * vc->vc_font.height) + vc->vc_font.height); in cw_cursor()
288 tmp = kmalloc_array(width, vc->vc_font.height, GFP_ATOMIC); in cw_cursor()
306 cur_height = (vc->vc_font.height < 10) ? 1 : 2; in cw_cursor()
309 cur_height = vc->vc_font.height/3; in cw_cursor()
312 cur_height = vc->vc_font.height >> 1; in cw_cursor()
315 cur_height = (vc->vc_font.height << 1)/3; in cw_cursor()
319 cur_height = vc->vc_font.height; in cw_cursor()
323 size = (vc->vc_font.height - cur_height) * width; in cw_cursor()
330 rotate_cw(tmp, mask, vc->vc_font.width, vc->vc_font.height); in cw_cursor()
341 cursor.image.height = ops->cursor_state.image.height; in cw_cursor()