| /netbsd/src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
| D | vmwgfx_ioctl.c | 262 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 …]
|
| D | vmwgfx_kms.h | 419 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,
|
| D | vmwgfx_ldu.c | 552 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()
|
| D | vmwgfx_kms.c | 1001 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 …]
|
| D | vmwgfx_scrn.c | 1132 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()
|
| D | vmwgfx_stdu.c | 680 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()
|
| D | vmwgfx_drv.h | 1160 struct drm_vmw_rect *clips,
|
| /netbsd/src/sys/external/bsd/drm2/dist/drm/ |
| D | drm_damage_helper.c | 167 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()
|
| D | drm_atomic.c | 556 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 …]
|
| D | drm_framebuffer.c | 584 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/ |
| D | drm_damage_helper.h | 60 const struct drm_rect *clips; member 74 unsigned int color, struct drm_clip_rect *clips,
|
| D | drm_framebuffer.h | 101 unsigned color, struct drm_clip_rect *clips,
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/config/sh/ |
| D | predicates.md | 93 ;; clips.b or clips.w insn. 100 ;; clips.b or clips.w insn.
|
| D | sh.md | 8778 ;; 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/ |
| D | videoio.h | 2058 struct v4l2_clip __user *clips; member
|
| /netbsd/src/games/fortune/datfiles/ |
| D | fortunes-o.real | 909 Reefers and roach clips and papers and rollers
|
| D | fortunes | 3804 address -- with glue or cellophane tape (no staples or paper clips) --
|
| D | fortunes2-o.real | 10511 Reefers and roach clips and papers and rollers
|
| D | fortunes2 | 372 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/ |
| D | NEWS | 8708 * Added support for the SH2A clips and clipu instructions. The
|
| /netbsd/src/share/dict/ |
| D | web2a | 71466 weeder clips
|
| D | web2 | 37719 clips
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | ChangeLog-2013 | 31310 * config/sh/sh.md (*clips, uminsi3, *clipu, clipu_one): New insns and
|