Lines Matching full:height
28 int i, j, offset = (vc->vc_font.height < 10) ? 1 : 2; in ccw_update_attr()
29 int width = (vc->vc_font.height + 7) >> 3; in ccw_update_attr()
30 int mod = vc->vc_font.height % 8; in ccw_update_attr()
64 int sx, int dy, int dx, int height, int width) in ccw_bmove() argument
70 area.sx = sy * vc->vc_font.height; in ccw_bmove()
72 area.dx = dy * vc->vc_font.height; in ccw_bmove()
74 area.width = height * vc->vc_font.height; in ccw_bmove()
75 area.height = width * vc->vc_font.width; in ccw_bmove()
81 int sx, int height, int width, int fg, int bg) in ccw_clear() argument
88 region.dx = sy * vc->vc_font.height; in ccw_clear()
90 region.height = width * vc->vc_font.width; in ccw_clear()
91 region.width = height * vc->vc_font.height; in ccw_clear()
104 u32 idx = (vc->vc_font.height + 7) >> 3; in ccw_putcs_aligned()
134 u32 width = (vc->vc_font.height + 7)/8; in ccw_putcs()
149 image.dx = yy * vc->vc_font.height; in ccw_putcs()
151 image.width = vc->vc_font.height; in ccw_putcs()
168 image.height = vc->vc_font.width * cnt; in ccw_putcs()
171 size = pitch * image.height + buf_align; in ccw_putcs()
177 image.dy += image.height; in ccw_putcs()
194 unsigned int ch = vc->vc_font.height; in ccw_clear_margins()
206 region.height = rw; in ccw_clear_margins()
214 region.height = info->var.yres_virtual; in ccw_clear_margins()
226 int w = (vc->vc_font.height + 7) >> 3, c; in ccw_cursor()
268 if (ops->cursor_state.image.height != vc->vc_font.width || in ccw_cursor()
269 ops->cursor_state.image.width != vc->vc_font.height || in ccw_cursor()
271 ops->cursor_state.image.height = vc->vc_font.width; in ccw_cursor()
272 ops->cursor_state.image.width = vc->vc_font.height; in ccw_cursor()
276 dx = y * vc->vc_font.height; in ccw_cursor()
305 tmp = kmalloc_array(width, vc->vc_font.height, GFP_ATOMIC); in ccw_cursor()
323 cur_height = (vc->vc_font.height < 10) ? 1 : 2; in ccw_cursor()
326 cur_height = vc->vc_font.height/3; in ccw_cursor()
329 cur_height = vc->vc_font.height >> 1; in ccw_cursor()
332 cur_height = (vc->vc_font.height << 1)/3; in ccw_cursor()
336 cur_height = vc->vc_font.height; in ccw_cursor()
340 size = (vc->vc_font.height - cur_height) * width; in ccw_cursor()
347 rotate_ccw(tmp, mask, vc->vc_font.width, vc->vc_font.height); in ccw_cursor()
358 cursor.image.height = ops->cursor_state.image.height; in ccw_cursor()