/src/sys/external/bsd/drm2/dist/drm/ |
drm_rect.c | 180 int dst_w = drm_rect_width(dst); local in function:drm_rect_calc_hscale 181 int hscale = drm_calc_scale(src_w, dst_w); 183 if (hscale < 0 || dst_w == 0)
|
/src/sys/arch/arm/amlogic/ |
meson_genfb.c | 420 const u_int dst_w = (width * scale) / 100; local in function:meson_genfb_scaler_config 422 const u_int margin_w = (width - dst_w) / 2; 489 const u_int hf_phase_step = ((width << 18) / dst_w) << 6;
|
/src/sys/external/bsd/drm2/dist/drm/i915/display/ |
intel_sprite.c | 337 unsigned int src_w, src_h, dst_w, dst_h; local in function:skl_plane_min_cdclk 348 dst_w = drm_rect_width(&plane_state->uapi.dst); 352 dst_w = min(src_w, dst_w); 356 mul_u32_u32(den, dst_w * dst_h)); 1203 unsigned int src_w, dst_w, pixel_rate; local in function:ivb_sprite_min_cdclk 1216 dst_w = drm_rect_width(&plane_state->uapi.dst); 1218 if (src_w != dst_w) 1224 dst_w = min(src_w, dst_w); [all...] |
intel_display.c | 5949 int src_w, int src_h, int dst_w, int dst_h, 5966 if (src_w != dst_w || src_h != dst_h) 6013 dst_w < SKL_MIN_DST_W || dst_h < SKL_MIN_DST_H || 6016 dst_w > ICL_MAX_DST_W || dst_h > ICL_MAX_DST_H)) || 6019 dst_w > SKL_MAX_DST_W || dst_h > SKL_MAX_DST_H))) { 6022 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h); 6030 intel_crtc->pipe, scaler_user, src_w, src_h, dst_w, dst_h, 12127 int dst_w = drm_rect_width(&state->uapi.dst); local in function:needs_scaling 12130 return (src_w != dst_w || src_h != dst_h);
|
/src/sys/external/bsd/drm2/dist/drm/i915/ |
intel_pm.c | 4129 u32 src_w, src_h, dst_w, dst_h; local in function:skl_plane_downscale_amount 4145 dst_w = drm_rect_width(&plane_state->uapi.dst); 4148 fp_w_ratio = div_fixed16(src_w, dst_w);
|