HomeSort by: relevance | last modified time | path
    Searched defs:clips_ptr (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_draw.c 140 struct drm_clip_rect *clips_ptr; local in function:qxl_draw_dirty_fb
169 for (i = 1, clips_ptr = clips + inc;
170 i < num_clips; i++, clips_ptr += inc) {
171 left = min_t(int, left, (int)clips_ptr->x1);
172 right = max_t(int, right, (int)clips_ptr->x2);
173 top = min_t(int, top, (int)clips_ptr->y1);
174 bottom = max_t(int, bottom, (int)clips_ptr->y2);
241 clips_ptr = clips;
242 for (i = 0; i < num_clips; i++, clips_ptr += inc) {
243 rects[i].left = clips_ptr->x1
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_ioctl.c 261 struct drm_vmw_rect __user *clips_ptr; local in function:vmw_present_ioctl
270 clips_ptr = (struct drm_vmw_rect __user *)(unsigned long)arg->clips_ptr;
275 if (clips_ptr == NULL) {
276 VMW_DEBUG_USER("Variable clips_ptr must be specified.\n");
288 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips));
345 struct drm_vmw_rect __user *clips_ptr; local in function:vmw_present_readback_ioctl
353 clips_ptr = (struct drm_vmw_rect __user *)(unsigned long)arg->clips_ptr;
358 if (clips_ptr == NULL)
    [all...]
vmwgfx_kms.c 2478 const struct drm_clip_rect *clips_ptr = clips; local in function:vmw_kms_helper_dirty
2491 for (i = 0; i < num_clips; i++, clips_ptr += increment,
2502 dirty->fb_x = (s32) clips_ptr->x1;
2503 dirty->fb_y = (s32) clips_ptr->y1;
2504 dirty->unit_x2 = (s32) clips_ptr->x2 + dest_x -
2506 dirty->unit_y2 = (s32) clips_ptr->y2 + dest_y -
  /src/sys/external/bsd/drm2/dist/drm/
drm_framebuffer.c 583 struct drm_clip_rect __user *clips_ptr; local in function:drm_mode_dirtyfb_ioctl
599 clips_ptr = (struct drm_clip_rect __user *)(unsigned long)r->clips_ptr;
601 if (!num_clips != !clips_ptr) {
614 if (num_clips && clips_ptr) {
625 ret = copy_from_user(clips, clips_ptr,
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
vmwgfx_drm.h 752 * @clips_ptr: Pointer to an array of clip rects cast to an __u64.
765 __u64 clips_ptr; member in struct:drm_vmw_present_arg
785 * @clips_ptr: Pointer to an array of clip rects cast to an __u64.
793 __u64 clips_ptr; member in struct:drm_vmw_present_readback_arg
drm_mode.h 566 __u64 clips_ptr; member in struct:drm_mode_fb_dirty_cmd

Completed in 19 milliseconds