Home
last modified time | relevance | path

Searched refs:clips (Results 1 – 23 of 23) sorted by relevance

/netbsd/src/sys/external/bsd/drm2/dist/drm/vmwgfx/
Dvmwgfx_ioctl.c262 struct drm_vmw_rect *clips = NULL; in vmw_present_ioctl() local
281 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL); in vmw_present_ioctl()
282 if (clips == NULL) { in vmw_present_ioctl()
288 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips)); in vmw_present_ioctl()
319 clips, num_clips); in vmw_present_ioctl()
331 kfree(clips); in vmw_present_ioctl()
346 struct drm_vmw_rect *clips = NULL; in vmw_present_readback_ioctl() local
364 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL); in vmw_present_readback_ioctl()
365 if (clips == NULL) { in vmw_present_readback_ioctl()
371 ret = copy_from_user(clips, clips_ptr, num_clips * sizeof(*clips)); in vmw_present_readback_ioctl()
[all …]
Dvmwgfx_kms.h419 const struct drm_clip_rect *clips,
502 struct drm_clip_rect *clips,
505 const struct drm_clip_rect *clips,
515 struct drm_clip_rect *clips,
525 struct drm_clip_rect *clips,
545 struct drm_clip_rect *clips,
557 struct drm_clip_rect *clips,
Dvmwgfx_ldu.c552 struct drm_clip_rect *clips, in vmw_kms_ldu_do_bo_dirty() argument
569 for (i = 0; i < num_clips; i++, clips += increment) { in vmw_kms_ldu_do_bo_dirty()
571 cmd[i].body.x = clips->x1; in vmw_kms_ldu_do_bo_dirty()
572 cmd[i].body.y = clips->y1; in vmw_kms_ldu_do_bo_dirty()
573 cmd[i].body.width = clips->x2 - clips->x1; in vmw_kms_ldu_do_bo_dirty()
574 cmd[i].body.height = clips->y2 - clips->y1; in vmw_kms_ldu_do_bo_dirty()
Dvmwgfx_kms.c1001 struct drm_clip_rect *clips, in vmw_framebuffer_bo_dirty() argument
1020 clips = &norect; in vmw_framebuffer_bo_dirty()
1032 clips, num_clips, increment); in vmw_framebuffer_bo_dirty()
1051 struct drm_clip_rect *clips, in vmw_framebuffer_bo_dirty_ext() argument
1058 color, clips, num_clips); in vmw_framebuffer_bo_dirty_ext()
1061 clips, num_clips); in vmw_framebuffer_bo_dirty_ext()
1742 struct drm_vmw_rect *clips, in vmw_kms_generic_present() argument
1745 return vmw_kms_sou_do_surface_dirty(dev_priv, vfb, NULL, clips, in vmw_kms_generic_present()
1757 struct drm_vmw_rect *clips, in vmw_kms_present() argument
1764 ret = vmw_kms_stdu_surface_dirty(dev_priv, vfb, NULL, clips, in vmw_kms_present()
[all …]
Dvmwgfx_scrn.c1132 struct drm_clip_rect *clips, in vmw_kms_sou_do_surface_dirty() argument
1172 ret = vmw_kms_helper_dirty(dev_priv, framebuffer, clips, vclips, in vmw_kms_sou_do_surface_dirty()
1248 struct drm_clip_rect *clips, in vmw_kms_sou_do_bo_dirty() argument
1279 ret = vmw_kms_helper_dirty(dev_priv, framebuffer, clips, vclips, in vmw_kms_sou_do_bo_dirty()
Dvmwgfx_stdu.c680 struct drm_clip_rect *clips, in vmw_kms_stdu_dma() argument
732 ret = vmw_kms_helper_dirty(dev_priv, vfb, clips, vclips, in vmw_kms_stdu_dma()
855 struct drm_clip_rect *clips, in vmw_kms_stdu_surface_dirty() argument
883 ret = vmw_kms_update_proxy(srf, clips, num_clips, inc); in vmw_kms_stdu_surface_dirty()
898 ret = vmw_kms_helper_dirty(dev_priv, framebuffer, clips, vclips, in vmw_kms_stdu_surface_dirty()
Dvmwgfx_drv.h1160 struct drm_vmw_rect *clips,
/netbsd/src/sys/external/bsd/drm2/dist/drm/
Ddrm_damage_helper.c167 unsigned int color, struct drm_clip_rect *clips, in drm_atomic_helper_dirtyfb() argument
191 if (clips) { in drm_atomic_helper_dirtyfb()
205 convert_clip_rect_to_rect(clips, rects, num_clips, inc); in drm_atomic_helper_dirtyfb()
290 iter->clips = drm_helper_get_plane_damage_clips(state); in drm_atomic_helper_damage_iter_init()
299 if (!iter->clips || !drm_rect_equals(&state->src, &old_state->src)) { in drm_atomic_helper_damage_iter_init()
300 iter->clips = NULL; in drm_atomic_helper_damage_iter_init()
336 *rect = iter->clips[iter->curr_clip]; in drm_atomic_helper_damage_iter_next()
Ddrm_atomic.c556 struct drm_mode_rect *clips; in drm_atomic_plane_check() local
631 clips = drm_plane_get_damage_clips(new_plane_state); in drm_atomic_plane_check()
636 if (clips->x1 >= clips->x2 || in drm_atomic_plane_check()
637 clips->y1 >= clips->y2 || in drm_atomic_plane_check()
638 clips->x1 < 0 || in drm_atomic_plane_check()
639 clips->y1 < 0 || in drm_atomic_plane_check()
640 clips->x2 > fb_width || in drm_atomic_plane_check()
641 clips->y2 > fb_height) { in drm_atomic_plane_check()
643 plane->base.id, plane->name, clips->x1, in drm_atomic_plane_check()
644 clips->y1, clips->x2, clips->y2); in drm_atomic_plane_check()
[all …]
Ddrm_framebuffer.c584 struct drm_clip_rect *clips = NULL; in drm_mode_dirtyfb_ioctl() local
619 clips = kcalloc(num_clips, sizeof(*clips), GFP_KERNEL); in drm_mode_dirtyfb_ioctl()
620 if (!clips) { in drm_mode_dirtyfb_ioctl()
625 ret = copy_from_user(clips, clips_ptr, in drm_mode_dirtyfb_ioctl()
626 num_clips * sizeof(*clips)); in drm_mode_dirtyfb_ioctl()
635 clips, num_clips); in drm_mode_dirtyfb_ioctl()
641 kfree(clips); in drm_mode_dirtyfb_ioctl()
/netbsd/src/sys/external/bsd/drm2/dist/include/drm/
Ddrm_damage_helper.h60 const struct drm_rect *clips; member
74 unsigned int color, struct drm_clip_rect *clips,
Ddrm_framebuffer.h101 unsigned color, struct drm_clip_rect *clips,
/netbsd/src/external/gpl3/gcc/dist/gcc/config/sh/
Dpredicates.md93 ;; clips.b or clips.w insn.
100 ;; clips.b or clips.w insn.
Dsh.md8778 ;; The SH2A clips.b and clips.w insns do a signed min-max function. If smin
8782 ;; The clips.b and clips.w set the SR.CS bit if the value in the register is
8803 (define_insn_and_split "*clips"
8814 (define_insn "*clips"
8822 return "clips.b %0";
8824 return "clips.w %0";
/netbsd/src/sys/sys/
Dvideoio.h2058 struct v4l2_clip __user *clips; member
/netbsd/src/games/fortune/datfiles/
Dfortunes-o.real909 Reefers and roach clips and papers and rollers
Dfortunes3804 address -- with glue or cellophane tape (no staples or paper clips) --
Dfortunes2-o.real10511 Reefers and roach clips and papers and rollers
Dfortunes2372 fully loaded, 32-round clips of 125-grain 9mm ammunition. The owner of the
15275 Earth Destroyed by Solar Flare -- film clips at eleven.
17327 This film is a compilation of selected news clips depicting audiences
/netbsd/src/external/gpl3/gcc/dist/
DNEWS8708 * Added support for the SH2A clips and clipu instructions. The
/netbsd/src/share/dict/
Dweb2a71466 weeder clips
Dweb237719 clips
/netbsd/src/external/gpl3/gcc/dist/gcc/
DChangeLog-201331310 * config/sh/sh.md (*clips, uminsi3, *clipu, clipu_one): New insns and