Lines Matching full:height
28 int i, offset = (vc->vc_font.height < 10) ? 1 : 2; in update_attr()
30 unsigned int cellsize = vc->vc_font.height * width; in update_attr()
47 int sx, int dy, int dx, int height, int width) in bit_bmove() argument
52 area.sy = sy * vc->vc_font.height; in bit_bmove()
54 area.dy = dy * vc->vc_font.height; in bit_bmove()
55 area.height = height * vc->vc_font.height; in bit_bmove()
62 int sx, int height, int width, int fg, int bg) in bit_clear() argument
68 region.dy = sy * vc->vc_font.height; in bit_clear()
70 region.height = height * vc->vc_font.height; in bit_clear()
96 image->height); in bit_putcs_aligned()
99 image->height); in bit_putcs_aligned()
130 image->height, shift_high, in bit_putcs_unaligned()
148 u32 cellsize = width * vc->vc_font.height; in bit_putcs()
159 image.dy = yy * vc->vc_font.height; in bit_putcs()
160 image.height = vc->vc_font.height; in bit_putcs()
178 size = pitch * image.height + buf_align; in bit_putcs()
208 unsigned int ch = vc->vc_font.height; in bit_clear_margins()
222 region.height = info->var.yres_virtual; in bit_clear_margins()
230 region.height = bh; in bit_clear_margins()
254 src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height)); in bit_cursor()
265 dst = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC); in bit_cursor()
283 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) || in bit_cursor()
286 ops->cursor_state.image.dy = vc->vc_font.height * y; in bit_cursor()
290 if (ops->cursor_state.image.height != vc->vc_font.height || in bit_cursor()
293 ops->cursor_state.image.height = vc->vc_font.height; in bit_cursor()
308 char *mask = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC); in bit_cursor()
326 cur_height = (vc->vc_font.height < 10) ? 1 : 2; in bit_cursor()
329 cur_height = vc->vc_font.height/3; in bit_cursor()
332 cur_height = vc->vc_font.height >> 1; in bit_cursor()
335 cur_height = (vc->vc_font.height << 1)/3; in bit_cursor()
339 cur_height = vc->vc_font.height; in bit_cursor()
342 size = (vc->vc_font.height - cur_height) * w; in bit_cursor()
357 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()