/src/sys/external/bsd/drm2/dist/include/drm/ |
drm_damage_helper.h | 62 uint32_t num_clips; member in struct:drm_atomic_helper_damage_iter 75 unsigned int num_clips);
|
/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
vmwgfx_ioctl.c | 266 uint32_t num_clips; local in function:vmw_present_ioctl 269 num_clips = arg->num_clips; 272 if (unlikely(num_clips == 0)) 281 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL); 288 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips)); 319 clips, num_clips); 349 uint32_t num_clips; local in function:vmw_present_readback_ioctl 352 num_clips = arg->num_clips; [all...] |
/src/sys/external/bsd/drm2/dist/drm/ |
drm_atomic.c | 557 uint32_t num_clips; local in function:drm_atomic_plane_check 632 num_clips = drm_plane_get_damage_clips_count(new_plane_state); 635 while (num_clips > 0) { 648 num_clips--;
|
drm_framebuffer.c | 588 int num_clips; local in function:drm_mode_dirtyfb_ioctl 598 num_clips = r->num_clips; 601 if (!num_clips != !clips_ptr) { 609 if (flags & DRM_MODE_FB_DIRTY_ANNOTATE_COPY && (num_clips % 2)) { 614 if (num_clips && clips_ptr) { 615 if (num_clips < 0 || num_clips > DRM_MODE_FB_DIRTY_MAX_CLIPS) { 619 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL); 626 num_clips * sizeof(*clips)) [all...] |
/src/sys/external/bsd/drm2/dist/drm/vboxvideo/ |
vbox_mode.c | 294 uint32_t num_clips, i; local in function:vbox_primary_atomic_update 303 num_clips = drm_plane_get_damage_clips_count(plane->state); 305 if (!num_clips) 310 for (i = 0; i < num_clips; ++i, ++clips) {
|
/src/sys/external/bsd/drm2/dist/include/uapi/drm/ |
vmwgfx_drm.h | 753 * @num_clips: Number of cliprects given relative to the framebuffer origin, 766 __u32 num_clips; member in struct:drm_vmw_present_arg 784 * @num_clips: Number of cliprects. 792 __u32 num_clips; member in struct:drm_vmw_present_readback_arg
|
drm_mode.h | 552 * the number of updated regions are half of num_clips given, 565 __u32 num_clips; member in struct:drm_mode_fb_dirty_cmd
|