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()
239 region.height = info->var.yres_virtual; in ud_clear_margins()
246 region.height = bh; in ud_clear_margins()
282 src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.height)); in ud_cursor()
293 dst = kmalloc(w * vc->vc_font.height, GFP_ATOMIC); in ud_cursor()
310 if (ops->cursor_state.image.height != vc->vc_font.height || in ud_cursor()
313 ops->cursor_state.image.height = vc->vc_font.height; in ud_cursor()
318 dy = vyres - ((y * vc->vc_font.height) + vc->vc_font.height); in ud_cursor()
339 char *mask = kmalloc(w*vc->vc_font.height, GFP_ATOMIC); in ud_cursor()
357 cur_height = (vc->vc_font.height < 10) ? 1 : 2; in ud_cursor()
360 cur_height = vc->vc_font.height/3; in ud_cursor()
363 cur_height = vc->vc_font.height >> 1; in ud_cursor()
366 cur_height = (vc->vc_font.height << 1)/3; in ud_cursor()
370 cur_height = vc->vc_font.height; in ud_cursor()
379 size = (vc->vc_font.height - cur_height) * w; in ud_cursor()
401 cursor.image.height = ops->cursor_state.image.height; in ud_cursor()