• Home
  • Raw
  • Download

Lines Matching refs:width

29 	int width = DIV_ROUND_UP(vc->vc_font.width, 8);  in update_attr()  local
30 unsigned int cellsize = vc->vc_font.height * width; in update_attr()
33 offset = cellsize - (offset * width); in update_attr()
47 int sx, int dy, int dx, int height, int width) in bit_bmove() argument
51 area.sx = sx * vc->vc_font.width; in bit_bmove()
53 area.dx = dx * vc->vc_font.width; in bit_bmove()
56 area.width = width * vc->vc_font.width; in bit_bmove()
62 int sx, int height, int width) in bit_clear() argument
68 region.dx = sx * vc->vc_font.width; in bit_clear()
70 region.width = width * vc->vc_font.width; in bit_clear()
83 u32 idx = vc->vc_font.width >> 3; in bit_putcs_aligned()
116 u32 shift_low = 0, mod = vc->vc_font.width % 8; in bit_putcs_unaligned()
118 u32 idx = vc->vc_font.width >> 3; in bit_putcs_unaligned()
148 u32 width = DIV_ROUND_UP(vc->vc_font.width, 8); in bit_putcs() local
149 u32 cellsize = width * vc->vc_font.height; in bit_putcs()
153 u32 mod = vc->vc_font.width % 8, cnt, pitch, size; in bit_putcs()
159 image.dx = xx * vc->vc_font.width; in bit_putcs()
176 image.width = vc->vc_font.width * cnt; in bit_putcs()
177 pitch = DIV_ROUND_UP(image.width, 8) + scan_align; in bit_putcs()
186 width, cellsize, &image, buf, dst); in bit_putcs()
189 pitch, width, cellsize, &image, in bit_putcs()
192 image.dx += cnt * vc->vc_font.width; in bit_putcs()
208 unsigned int cw = vc->vc_font.width; in bit_clear_margins()
222 region.width = rw; in bit_clear_margins()
230 region.width = rs; in bit_clear_margins()
242 int w = DIV_ROUND_UP(vc->vc_font.width, 8), c; in bit_cursor()
283 if ((ops->cursor_state.image.dx != (vc->vc_font.width * vc->state.x)) || in bit_cursor()
286 ops->cursor_state.image.dx = vc->vc_font.width * vc->state.x; in bit_cursor()
292 ops->cursor_state.image.width != vc->vc_font.width || in bit_cursor()
295 ops->cursor_state.image.width = vc->vc_font.width; in bit_cursor()
368 cursor.image.width = ops->cursor_state.image.width; in bit_cursor()