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) in ccw_clear() argument
89 region.dx = sy * vc->vc_font.height; in ccw_clear()
91 region.height = width * vc->vc_font.width; in ccw_clear()
92 region.width = height * vc->vc_font.height; in ccw_clear()
105 u32 idx = (vc->vc_font.height + 7) >> 3; in ccw_putcs_aligned()
135 u32 width = (vc->vc_font.height + 7)/8; in ccw_putcs()
150 image.dx = yy * vc->vc_font.height; in ccw_putcs()
152 image.width = vc->vc_font.height; in ccw_putcs()
169 image.height = vc->vc_font.width * cnt; in ccw_putcs()
172 size = pitch * image.height + buf_align; in ccw_putcs()
178 image.dy += image.height; in ccw_putcs()
195 unsigned int ch = vc->vc_font.height; in ccw_clear_margins()
207 region.height = rw; in ccw_clear_margins()
215 region.height = info->var.yres_virtual; in ccw_clear_margins()
227 int w = (vc->vc_font.height + 7) >> 3, c; in ccw_cursor()
269 if (ops->cursor_state.image.height != vc->vc_font.width || in ccw_cursor()
270 ops->cursor_state.image.width != vc->vc_font.height || in ccw_cursor()
272 ops->cursor_state.image.height = vc->vc_font.width; in ccw_cursor()
273 ops->cursor_state.image.width = vc->vc_font.height; in ccw_cursor()
277 dx = y * vc->vc_font.height; in ccw_cursor()
306 tmp = kmalloc_array(width, vc->vc_font.height, GFP_ATOMIC); in ccw_cursor()
324 cur_height = (vc->vc_font.height < 10) ? 1 : 2; in ccw_cursor()
327 cur_height = vc->vc_font.height/3; in ccw_cursor()
330 cur_height = vc->vc_font.height >> 1; in ccw_cursor()
333 cur_height = (vc->vc_font.height << 1)/3; in ccw_cursor()
337 cur_height = vc->vc_font.height; in ccw_cursor()
341 size = (vc->vc_font.height - cur_height) * width; in ccw_cursor()
348 rotate_ccw(tmp, mask, vc->vc_font.width, vc->vc_font.height); in ccw_cursor()
359 cursor.image.height = ops->cursor_state.image.height; in ccw_cursor()