Lines Matching refs:height

28 	int i, j, offset = (vc->vc_font.height < 10) ? 1 : 2;
29 int width = (vc->vc_font.height + 7) >> 3;
50 int sx, int dy, int dx, int height, int width)
56 area.sx = vxres - ((sy + height) * vc->vc_font.height);
58 area.dx = vxres - ((dy + height) * vc->vc_font.height);
60 area.width = height * vc->vc_font.height;
61 area.height = width * vc->vc_font.width;
67 int sx, int height, int width)
75 region.dx = vxres - ((sy + height) * vc->vc_font.height);
77 region.height = width * vc->vc_font.width;
78 region.width = height * vc->vc_font.height;
91 u32 idx = (vc->vc_font.height + 7) >> 3;
121 u32 width = (vc->vc_font.height + 7)/8;
136 image.dx = vxres - ((yy + 1) * vc->vc_font.height);
138 image.width = vc->vc_font.height;
153 image.height = vc->vc_font.width * cnt;
156 size = pitch * image.height + buf_align;
162 image.dy += image.height;
179 unsigned int ch = vc->vc_font.height;
192 region.height = rw;
200 region.height = info->var.yres;
212 int w = (vc->vc_font.height + 7) >> 3, c;
263 if (ops->cursor_state.image.height != vc->vc_font.width ||
264 ops->cursor_state.image.width != vc->vc_font.height ||
266 ops->cursor_state.image.height = vc->vc_font.width;
267 ops->cursor_state.image.width = vc->vc_font.height;
271 dx = vxres - ((y * vc->vc_font.height) + vc->vc_font.height);
299 tmp = kmalloc(width * vc->vc_font.height, GFP_ATOMIC);
317 cur_height = (vc->vc_font.height < 10) ? 1 : 2;
320 cur_height = vc->vc_font.height/3;
323 cur_height = vc->vc_font.height >> 1;
326 cur_height = (vc->vc_font.height << 1)/3;
330 cur_height = vc->vc_font.height;
334 size = (vc->vc_font.height - cur_height) * width;
341 rotate_cw(tmp, mask, vc->vc_font.width, vc->vc_font.height);
361 cursor.image.height = ops->cursor_state.image.height;