Lines Matching refs:image

1699 				      drm_radeon_tex_image_t * image)  in radeon_cp_dispatch_texture()  argument
1738 blit_width = image->width * 4; in radeon_cp_dispatch_texture()
1748 blit_width = image->width * 2; in radeon_cp_dispatch_texture()
1754 blit_width = image->width * 1; in radeon_cp_dispatch_texture()
1761 if (spitch == 0 && image->height > 1) in radeon_cp_dispatch_texture()
1770 image->x *= 2; in radeon_cp_dispatch_texture()
1776 if (!radeon_check_offset(dev_priv, tex->offset + image->height * in radeon_cp_dispatch_texture()
1787 image->x, image->y, image->width, image->height); in radeon_cp_dispatch_texture()
1792 height = image->height; in radeon_cp_dispatch_texture()
1793 data = (const u8 __user *)image->data; in radeon_cp_dispatch_texture()
1813 if (copy_to_user(tex->image, image, sizeof(*image))) in radeon_cp_dispatch_texture()
1895 byte_offset = (image->y & ~2047) * blit_width; in radeon_cp_dispatch_texture()
1912 OUT_RING((image->x << 16) | (image->y % 2048)); in radeon_cp_dispatch_texture()
1913 OUT_RING((image->width << 16) | height); in radeon_cp_dispatch_texture()
1921 image->y += height; in radeon_cp_dispatch_texture()
1922 image->height -= height; in radeon_cp_dispatch_texture()
1923 image->data = (const u8 __user *)image->data + size; in radeon_cp_dispatch_texture()
1924 } while (image->height > 0); in radeon_cp_dispatch_texture()
2429 drm_radeon_tex_image_t image; in radeon_cp_texture() local
2434 if (tex->image == NULL) { in radeon_cp_texture()
2439 if (copy_from_user(&image, in radeon_cp_texture()
2440 (drm_radeon_tex_image_t __user *) tex->image, in radeon_cp_texture()
2441 sizeof(image))) in radeon_cp_texture()
2448 ret = r600_cp_dispatch_texture(dev, file_priv, tex, &image); in radeon_cp_texture()
2450 ret = radeon_cp_dispatch_texture(dev, file_priv, tex, &image); in radeon_cp_texture()