Lines Matching refs:dims
1394 struct fb_plane_view_dims *dims)
1396 dims->width = width;
1397 dims->height = height;
1399 intel_tile_dims(&fb->base, color_plane, &dims->tile_width, &dims->tile_height);
1404 const struct fb_plane_view_dims *dims)
1407 dims->tile_width * fb->base.format->cpp[color_plane]);
1444 const struct fb_plane_view_dims *dims,
1447 return DIV_ROUND_UP(x + dims->width, dims->tile_width);
1452 const struct fb_plane_view_dims *dims,
1455 return DIV_ROUND_UP(y + dims->height, dims->tile_height);
1460 const struct fb_plane_view_dims *dims,
1466 size = (y + dims->height) * fb->base.pitches[color_plane] +
1484 const struct fb_plane_view_dims *dims,
1491 unsigned int tile_width = dims->tile_width;
1492 unsigned int tile_height = dims->tile_height;
1503 plane_view_linear_tiles(fb, color_plane, dims, x, y));
1508 plane_view_src_stride_tiles(fb, color_plane, dims));
1510 plane_view_width_tiles(fb, color_plane, dims, x));
1512 plane_view_height_tiles(fb, color_plane, dims, y));
1523 drm_rect_init(&r, x, y, dims->width, dims->height);
1613 const struct fb_plane_view_dims *dims,
1619 tiles = plane_view_linear_tiles(fb, color_plane, dims, x, y);
1621 tiles = plane_view_src_stride_tiles(fb, color_plane, dims) *
1622 plane_view_height_tiles(fb, color_plane, dims, y);