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

  /src/sys/external/bsd/drm2/dist/drm/
drm_plane.c 605 uint32_t crtc_w, uint32_t crtc_h,
631 if (crtc_w > INT_MAX ||
632 crtc_x > INT_MAX - (int32_t) crtc_w ||
636 crtc_w, crtc_h, crtc_x, crtc_y);
682 uint32_t crtc_w, uint32_t crtc_h,
706 crtc_x, crtc_y, crtc_w, crtc_h,
713 crtc_x, crtc_y, crtc_w, crtc_h,
735 uint32_t crtc_w, uint32_t crtc_h,
756 crtc_x, crtc_y, crtc_w, crtc_h,
762 crtc_x, crtc_y, crtc_w, crtc_h
863 uint32_t crtc_w = 0, crtc_h = 0; local in function:drm_mode_cursor_universal
    [all...]
  /src/sys/external/bsd/drm2/dist/include/drm/
drm_plane.h 44 * @crtc_w and the source coordinates @src_x, @src_y, @src_h and @src_w are the
100 /** @crtc_w: width of visible portion of plane on crtc */
102 uint32_t crtc_w, crtc_h; member in struct:drm_plane_state
249 .x2 = state->crtc_x + state->crtc_w,
272 * crtc_x, crtc_y, crtc_w and crtc_h parameters (as integer values).
288 unsigned int crtc_w, unsigned int crtc_h,
  /src/sys/external/bsd/drm2/dist/drm/i915/display/
intel_sprite.c 390 u32 crtc_w = drm_rect_width(&plane_state->uapi.dst); local in function:skl_program_scaler
428 I915_WRITE_FW(SKL_PS_WIN_SZ(pipe, scaler_id), (crtc_w << 16) | crtc_h);
1025 u32 crtc_w = drm_rect_width(&plane_state->uapi.dst); local in function:vlv_update_plane
1035 crtc_w--;
1045 I915_WRITE_FW(SPSIZE(pipe, plane_id), (crtc_h << 16) | crtc_w);
1439 u32 crtc_w = drm_rect_width(&plane_state->uapi.dst); local in function:ivb_update_plane
1453 crtc_w--;
1456 if (crtc_w != src_w || crtc_h != src_h)
1465 I915_WRITE_FW(SPRSIZE(pipe), (crtc_h << 16) | crtc_w);
1751 u32 crtc_w = drm_rect_width(&plane_state->uapi.dst) local in function:g4x_update_plane
1872 int src_x, src_w, src_h, crtc_w, crtc_h; local in function:g4x_sprite_check_scaling
2109 int crtc_w = drm_rect_width(&plane_state->uapi.dst); local in function:skl_plane_check_dst_coordinates
    [all...]
intel_display.c 3635 plane_state->crtc_w = fb->width;
4326 int crtc_w = drm_rect_width(&plane_state->uapi.dst); local in function:i9xx_update_plane
4353 ((crtc_h - 1) << 16) | (crtc_w - 1));
4357 ((crtc_h - 1) << 16) | (crtc_w - 1));
16000 unsigned int crtc_w, unsigned int crtc_h,
16040 old_plane_state->uapi.crtc_w != crtc_w ||
16063 new_plane_state->uapi.crtc_w = crtc_w;
16114 crtc_x, crtc_y, crtc_w, crtc_h
    [all...]
  /src/sys/external/bsd/drm2/dist/include/uapi/drm/
drm_mode.h 286 __u32 crtc_w; member in struct:drm_mode_set_plane

Completed in 46 milliseconds