Lines Matching defs:width
458 unsigned int width = drm_rect_width(rect);
460 unsigned int line_length = DIV_ROUND_UP(width, 8);
471 * pixels, and the width of the screen. When sending a byte of
500 ret = ssd130x_set_col_range(ssd130x, ssd130x->col_offset + x, width);
515 for (j = 0; j < width; j++) {
538 ret = ssd130x_write_data(ssd130x, data_array, width);
548 ret = ssd130x_write_data(ssd130x, data_array, width * pages);
559 unsigned int width = ssd130x->width;
563 memset(data_array, 0, width * pages);
566 ret = ssd130x_set_col_range(ssd130x, ssd130x->col_offset, width);
575 ssd130x_write_data(ssd130x, data_array, width * pages);
581 memset(data_array, 0, width);
590 ret = ssd130x_write_data(ssd130x, data_array, width);
651 pitch = drm_format_info_min_pitch(fi, 0, ssd130x->width);
657 ssd130x_state->data_array = kcalloc(ssd130x->width, pages, GFP_KERNEL);
944 if (device_property_read_u32(dev, "solomon,width", &ssd130x->width))
945 ssd130x->width = ssd130x->device_info->default_width;
1012 mode->hdisplay = mode->htotal = ssd130x->width;
1013 mode->hsync_start = mode->hsync_end = ssd130x->width;