Lines Matching refs:height

80 		u16 width, u16 height, u16 out_width, u16 out_height,
85 u16 width, u16 height, u16 out_width, u16 out_height,
759 int height) in dispc_ovl_set_input_size() argument
761 u32 val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0); in dispc_ovl_set_input_size()
770 int height) in dispc_ovl_set_output_size() argument
776 val = FLD_VAL(height - 1, 26, 16) | FLD_VAL(width - 1, 10, 0); in dispc_ovl_set_output_size()
1129 u16 height) in dispc_mgr_set_size() argument
1133 val = FLD_VAL(height - 1, dispc.feat->mgr_height_start, 16) | in dispc_mgr_set_size()
1822 u16 width, u16 height, in calc_vrfb_rotation_offset() argument
1848 width, height); in calc_vrfb_rotation_offset()
1907 u16 width, u16 height, in calc_dma_rotation_offset() argument
1930 width, height); in calc_dma_rotation_offset()
1936 fbh = height; in calc_dma_rotation_offset()
1938 fbw = height; in calc_dma_rotation_offset()
2106 u16 width, u16 height, u16 out_width, u16 out_height, in check_horiz_timing_omap3() argument
2109 const int ds = DIV_ROUND_UP(height, out_height); in check_horiz_timing_omap3()
2118 if (out_height < height) in check_horiz_timing_omap3()
2158 u16 height, u16 out_width, u16 out_height, in calc_core_clk_five_taps() argument
2164 if (height <= out_height && width <= out_width) in calc_core_clk_five_taps()
2167 if (height > out_height) { in calc_core_clk_five_taps()
2170 tmp = (u64)pclk * height * out_width; in calc_core_clk_five_taps()
2174 if (height > 2 * out_height) { in calc_core_clk_five_taps()
2178 tmp = (u64)pclk * (height - 2 * out_height) * out_width; in calc_core_clk_five_taps()
2197 u16 height, u16 out_width, u16 out_height, bool mem_to_mem) in calc_core_clk_24xx() argument
2199 if (height > out_height && width > out_width) in calc_core_clk_24xx()
2206 u16 height, u16 out_width, u16 out_height, bool mem_to_mem) in calc_core_clk_34xx() argument
2223 if (height > out_height) in calc_core_clk_34xx()
2232 u16 height, u16 out_width, u16 out_height, bool mem_to_mem) in calc_core_clk_44xx() argument
2251 u16 width, u16 height, u16 out_width, u16 out_height, in dispc_ovl_calc_scaling_24xx() argument
2265 in_height = height / *decim_y; in dispc_ovl_calc_scaling_24xx()
2297 u16 width, u16 height, u16 out_width, u16 out_height, in dispc_ovl_calc_scaling_34xx() argument
2308 in_height = height / *decim_y; in dispc_ovl_calc_scaling_34xx()
2382 u16 width, u16 height, u16 out_width, u16 out_height, in dispc_ovl_calc_scaling_44xx() argument
2389 u16 in_height = height / *decim_y; in dispc_ovl_calc_scaling_44xx()
2428 u16 width, u16 height, u16 out_width, u16 out_height, in dispc_ovl_calc_scaling() argument
2438 if (width == out_width && height == out_height) in dispc_ovl_calc_scaling()
2469 decim_y = DIV_ROUND_UP(DIV_ROUND_UP(height, out_height), maxdownscale); in dispc_ovl_calc_scaling()
2474 if (decim_y > *y_predecim || out_height > height * 8) in dispc_ovl_calc_scaling()
2477 ret = dispc.feat->calc_scaling(pclk, lclk, mgr_timings, width, height, in dispc_ovl_calc_scaling()
2485 width, height, in dispc_ovl_calc_scaling()
2488 out_height / height, DIV_FRAC(out_height, height), in dispc_ovl_calc_scaling()
2491 width / decim_x, height / decim_y, in dispc_ovl_calc_scaling()
2493 out_height / (height / decim_y), DIV_FRAC(out_height, height / decim_y), in dispc_ovl_calc_scaling()
2519 u16 in_height = oi->height; in dispc_ovl_check()
2528 out_height = oi->out_height == 0 ? oi->height : oi->out_height; in dispc_ovl_check()
2530 if (ilace && oi->height == out_height) in dispc_ovl_check()
2554 u16 screen_width, int pos_x, int pos_y, u16 width, u16 height, in dispc_ovl_setup_common() argument
2569 u16 in_height = height; in dispc_ovl_setup_common()
2595 out_height = out_height == 0 ? height : out_height; in dispc_ovl_setup_common()
2597 if (ilace && height == out_height) in dispc_ovl_setup_common()
2678 frame_height = height; in dispc_ovl_setup_common()
2760 oi->pos_y, oi->width, oi->height, oi->out_width, oi->out_height, in dispc_ovl_setup()
2764 oi->screen_width, oi->pos_x, oi->pos_y, oi->width, oi->height, in dispc_ovl_setup()
2790 in_height, wi->width, wi->height, wi->color_mode, wi->rotation, in dispc_wb_setup()
2795 wi->height, wi->color_mode, wi->rotation, wi->mirror, zorder, in dispc_wb_setup()
3028 static bool _dispc_mgr_size_ok(u16 width, u16 height) in _dispc_mgr_size_ok() argument
3031 height <= dispc.feat->mgr_height_max; in _dispc_mgr_size_ok()