HomeSort by: relevance | last modified time | path
    Searched refs:num_clips (Results 1 - 19 of 19) sorted by relevancy

  /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);
drm_framebuffer.h 102 unsigned num_clips);
  /src/sys/external/bsd/drm2/dist/drm/
drm_damage_helper.c 82 uint32_t num_clips, uint32_t src_inc)
84 while (num_clips > 0) {
91 num_clips--;
152 * @num_clips: Count of clip in clips.
155 * during plane update. If num_clips is 0 then this helper will do a full plane
168 unsigned int num_clips)
196 num_clips /= 2;
199 rects = kcalloc(num_clips, sizeof(*rects), GFP_KERNEL);
205 convert_clip_rect_to_rect(clips, rects, num_clips, inc);
207 num_clips * sizeof(*rects)
    [all...]
drm_framebuffer.c 588 int num_clips; local
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...]
drm_atomic.c 557 uint32_t num_clips; local
632 num_clips = drm_plane_get_damage_clips_count(new_plane_state);
635 while (num_clips > 0) {
648 num_clips--;
  /src/sys/external/bsd/drm2/dist/drm/qxl/
qxl_draw.c 35 unsigned int num_clips,
38 int size = sizeof(struct qxl_clip_rects) + sizeof(struct qxl_rect) * num_clips;
47 unsigned int num_clips,
57 dev_clips->num_rects = num_clips;
60 dev_clips->chunk.data_size = sizeof(struct qxl_rect) * num_clips;
131 unsigned int num_clips, int inc,
170 i < num_clips; i++, clips_ptr += inc) {
180 ret = alloc_clips(qdev, release, num_clips, &clips_bo);
216 rects = drawable_set_clipping(qdev, num_clips, clips_bo);
242 for (i = 0; i < num_clips; i++, clips_ptr += inc)
    [all...]
qxl_display.c 418 unsigned int num_clips)
437 if (!num_clips) {
438 num_clips = 1;
444 num_clips /= 2;
449 clips, num_clips, inc, 0);
qxl_drv.h 432 unsigned int num_clips, int inc,
  /src/sys/external/bsd/drm2/dist/drm/vmwgfx/
vmwgfx_ioctl.c 266 uint32_t num_clips; local
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
352 num_clips = arg->num_clips;
    [all...]
vmwgfx_kms.h 422 int num_clips,
437 uint32_t num_clips);
503 unsigned int num_clips, int increment);
506 unsigned num_clips,
520 unsigned num_clips, int inc,
527 unsigned int num_clips, int increment,
536 uint32_t num_clips,
550 unsigned num_clips, int inc,
559 uint32_t num_clips,
vmwgfx_kms.c 855 * @num_clips: Number of clip rects in @vclips.
865 uint32_t num_clips)
870 user_fence_rep, vclips, num_clips,
874 user_fence_rep, NULL, vclips, num_clips,
1002 unsigned int num_clips)
1018 if (!num_clips) {
1019 num_clips = 1;
1025 num_clips /= 2;
1032 clips, num_clips, increment);
1052 unsigned int num_clips)
    [all...]
vmwgfx_scrn.c 1120 * @num_clips: Number of clip rects in @clips.
1137 unsigned num_clips, int inc,
1163 sizeof(SVGASignedRect) * num_clips;
1173 dest_x, dest_y, num_clips, inc,
1235 * @num_clips: Number of clip rects in @clips.
1250 unsigned num_clips, int increment,
1278 num_clips;
1280 0, 0, num_clips, increment, &dirty);
1348 * @num_clips: Number of clip rects in @vclips.
1359 uint32_t num_clips,
    [all...]
vmwgfx_ldu.c 553 unsigned int num_clips, int increment)
563 fifo_size = sizeof(*cmd) * num_clips;
569 for (i = 0; i < num_clips; i++, clips += increment) {
vmwgfx_stdu.c 663 * @num_clips: Number of clip rects in @clips or @vclips.
682 uint32_t num_clips,
718 num_clips * sizeof(SVGA3dCopyBox) +
733 0, 0, num_clips, increment, &ddirty.base);
843 * @num_clips: Number of clip rects in @clips.
860 unsigned num_clips, int inc,
883 ret = vmw_kms_update_proxy(srf, clips, num_clips, inc);
891 sizeof(SVGA3dCopyBox) * num_clips +
899 dest_x, dest_y, num_clips, inc,
vmwgfx_drv.h 1161 uint32_t num_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
  /src/sys/external/bsd/drm2/dist/drm/vboxvideo/
vbox_mode.c 294 uint32_t num_clips, i; local
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/drm/i915/display/
intel_display.c 16914 unsigned num_clips)

Completed in 45 milliseconds