Lines Matching refs:width

29 	int width = (vc->vc_font.height + 7) >> 3;
39 for (i = 0; i < vc->vc_font.width; i++) {
40 for (j = 0; j < width; j++) {
44 if (j == width - 1)
47 if (msk1 && j == width - 2)
52 *(dst - width) |= c;
64 int sx, int dy, int dx, int height, int width)
71 area.sy = vyres - ((sx + width) * vc->vc_font.width);
73 area.dy = vyres - ((dx + width) * vc->vc_font.width);
74 area.width = height * vc->vc_font.height;
75 area.height = width * vc->vc_font.width;
81 int sx, int height, int width, int fg, int bg)
89 region.dy = vyres - ((sx + width) * vc->vc_font.width);
90 region.height = width * vc->vc_font.width;
91 region.width = height * vc->vc_font.height;
117 vc->vc_font.width);
120 vc->vc_font.width);
122 dst += d_pitch * vc->vc_font.width;
134 u32 width = (vc->vc_font.height + 7)/8;
135 u32 cellsize = width * vc->vc_font.width;
150 image.dy = vyres - ((xx + count) * vc->vc_font.width);
151 image.width = vc->vc_font.height;
168 image.height = vc->vc_font.width * cnt;
169 pitch = ((image.width + 7) >> 3) + scan_align;
176 width, cellsize, &image, buf, dst);
193 unsigned int cw = vc->vc_font.width;
207 region.width = info->var.xres_virtual;
215 region.width = bh;
240 src = ops->fontbuffer + ((c & charmask) * (w * vc->vc_font.width));
251 dst = kmalloc_array(w, vc->vc_font.width, GFP_ATOMIC);
268 if (ops->cursor_state.image.height != vc->vc_font.width ||
269 ops->cursor_state.image.width != vc->vc_font.height ||
271 ops->cursor_state.image.height = vc->vc_font.width;
272 ops->cursor_state.image.width = vc->vc_font.height;
277 dy = vyres - ((vc->state.x + 1) * vc->vc_font.width);
297 char *tmp, *mask = kmalloc_array(w, vc->vc_font.width,
300 int width = (vc->vc_font.width + 7)/8;
305 tmp = kmalloc_array(width, vc->vc_font.height, GFP_ATOMIC);
340 size = (vc->vc_font.height - cur_height) * width;
343 size = cur_height * width;
346 memset(mask, 0, w * vc->vc_font.width);
347 rotate_ccw(tmp, mask, vc->vc_font.width, vc->vc_font.height);
359 cursor.image.width = ops->cursor_state.image.width;