Lines Matching refs:image32
1823 drm_radeon_tex_image_32_t image32;
1824 image32.x = image->x;
1825 image32.y = image->y;
1826 image32.width = image->width;
1827 image32.height = image->height;
1828 image32.data = (uint32_t)(uintptr_t)image->data;
1829 DRM_COPYTO_WITH_RETURN(tex->image, &image32,
1830 sizeof (image32));
2538 drm_radeon_tex_image_32_t image32;
2545 if (DRM_COPY_FROM_USER(&image32,
2546 (void *)(uintptr_t)tex32.image, sizeof (image32))) {
2558 image.x = image32.x;
2559 image.y = image32.y;
2560 image.width = image32.width;
2561 image.height = image32.height;
2562 image.data = (void*)(uintptr_t)image32.data;