Lines Matching defs:width
84 u32 width;
213 unsigned int y, unsigned int width,
223 array = ssd1307fb_alloc_array(width * pages, SSD1307FB_DATA);
229 * pixels, and the width of the screen. When sending a byte of
256 ret = ssd1307fb_set_col_range(par, par->col_offset + x, width);
270 for (j = x; j < x + width; j++) {
283 ret = ssd1307fb_write_array(par->client, array, width * pages);
292 return ssd1307fb_update_rect(par, 0, 0, par->width, par->height);
313 u32 width, u32 height)
317 ssd1307fb_update_rect(par, x, y, width, height);
633 if (device_property_read_u32(dev, "solomon,width", &par->width))
634 par->width = 96;
676 vmem_size = DIV_ROUND_UP(par->width, 8) * par->height;
699 info->fix.line_length = DIV_ROUND_UP(par->width, 8);
703 info->var.xres = par->width;
704 info->var.xres_virtual = par->width;