Lines Matching full:height

28 	int i, offset = (vc->vc_font.height < 10) ? 1 : 2;  in ud_update_attr()
30 unsigned int cellsize = vc->vc_font.height * width; in ud_update_attr()
49 int sx, int dy, int dx, int height, int width) in ud_bmove() argument
56 area.sy = vyres - ((sy + height) * vc->vc_font.height); in ud_bmove()
58 area.dy = vyres - ((dy + height) * vc->vc_font.height); in ud_bmove()
60 area.height = height * vc->vc_font.height; in ud_bmove()
67 int sx, int height, int width) in ud_clear() argument
76 region.dy = vyres - ((sy + height) * vc->vc_font.height); in ud_clear()
79 region.height = height * vc->vc_font.height; in ud_clear()
105 image->height); in ud_putcs_aligned()
108 image->height); in ud_putcs_aligned()
139 image->height, shift_high, in ud_putcs_unaligned()
158 u32 cellsize = width * vc->vc_font.height; in ud_putcs()
173 image.dy = vyres - ((yy * vc->vc_font.height) + vc->vc_font.height); in ud_putcs()
175 image.height = vc->vc_font.height; in ud_putcs()
195 size = pitch * image.height + buf_align; in ud_putcs()
226 unsigned int ch = vc->vc_font.height; in ud_clear_margins()
238 region.height = info->var.yres_virtual; in ud_clear_margins()
245 region.height = bh; in ud_clear_margins()
272 src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.height)); in ud_cursor()
283 dst = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC); in ud_cursor()
300 if (ops->cursor_state.image.height != vc->vc_font.height || in ud_cursor()
303 ops->cursor_state.image.height = vc->vc_font.height; in ud_cursor()
308 dy = vyres - ((y * vc->vc_font.height) + vc->vc_font.height); in ud_cursor()
329 char *mask = kmalloc_array(w, vc->vc_font.height, GFP_ATOMIC); in ud_cursor()
347 cur_height = (vc->vc_font.height < 10) ? 1 : 2; in ud_cursor()
350 cur_height = vc->vc_font.height/3; in ud_cursor()
353 cur_height = vc->vc_font.height >> 1; in ud_cursor()
356 cur_height = (vc->vc_font.height << 1)/3; in ud_cursor()
360 cur_height = vc->vc_font.height; in ud_cursor()
369 size = (vc->vc_font.height - cur_height) * w; in ud_cursor()
382 cursor.image.height = ops->cursor_state.image.height; in ud_cursor()