Lines Matching refs: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) in bit_clear() argument
69 region.dy = sy * vc->vc_font.height; in bit_clear()
71 region.height = height * vc->vc_font.height; in bit_clear()
97 image->height); in bit_putcs_aligned()
100 image->height); in bit_putcs_aligned()
131 image->height, shift_high, in bit_putcs_unaligned()
149 u32 cellsize = width * vc->vc_font.height; in bit_putcs()
160 image.dy = yy * vc->vc_font.height; in bit_putcs()
161 image.height = vc->vc_font.height; in bit_putcs()
179 size = pitch * image.height + buf_align; in bit_putcs()
209 unsigned int ch = vc->vc_font.height; in bit_clear_margins()
223 region.height = info->var.yres_virtual; in bit_clear_margins()
231 region.height = bh; in bit_clear_margins()
255 src = vc->vc_font.data + ((c & charmask) * (w * vc->vc_font.height)); in bit_cursor()
266 dst = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC); in bit_cursor()
284 (ops->cursor_state.image.dy != (vc->vc_font.height * y)) || in bit_cursor()
287 ops->cursor_state.image.dy = vc->vc_font.height * y; in bit_cursor()
291 if (ops->cursor_state.image.height != vc->vc_font.height || in bit_cursor()
294 ops->cursor_state.image.height = vc->vc_font.height; in bit_cursor()
309 char *mask = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC); in bit_cursor()
327 cur_height = (vc->vc_font.height < 10) ? 1 : 2; in bit_cursor()
330 cur_height = vc->vc_font.height/3; in bit_cursor()
333 cur_height = vc->vc_font.height >> 1; in bit_cursor()
336 cur_height = (vc->vc_font.height << 1)/3; in bit_cursor()
340 cur_height = vc->vc_font.height; in bit_cursor()
343 size = (vc->vc_font.height - cur_height) * w; in bit_cursor()
367 cursor.image.height = ops->cursor_state.image.height; in bit_cursor()