Searched refs:w_step (Results 1 – 3 of 3) sorted by relevance
/Linux-v4.19/drivers/media/platform/s5p-jpeg/ |
D | jpeg-core.c | 1427 int width, height, w_step, h_step; in jpeg_bound_align_image() local 1432 w_step = 1 << walign; in jpeg_bound_align_image() 1443 if (w_step == 4 && ((width & 3) == 1)) { in jpeg_bound_align_image() 1451 if (*w < width && (*w + w_step) < wmax) in jpeg_bound_align_image() 1452 *w += w_step; in jpeg_bound_align_image() 1785 int w_step, h_step; in exynos3250_jpeg_try_crop() local 1790 w_step = 1; in exynos3250_jpeg_try_crop() 1794 w_step = 2; in exynos3250_jpeg_try_crop() 1798 w_step = 1; in exynos3250_jpeg_try_crop() 1808 r->width = round_down(r->width, w_step); in exynos3250_jpeg_try_crop()
|
/Linux-v4.19/drivers/media/platform/mtk-jpeg/ |
D | mtk_jpeg_core.c | 173 int width, height, w_step, h_step; in mtk_jpeg_bound_align_image() local 177 w_step = 1 << walign; in mtk_jpeg_bound_align_image() 181 if (*w < width && (*w + w_step) <= wmax) in mtk_jpeg_bound_align_image() 182 *w += w_step; in mtk_jpeg_bound_align_image()
|
/Linux-v4.19/drivers/media/platform/ |
D | rcar_jpu.c | 754 unsigned int width, height, w_step, h_step; in jpu_bound_align_image() local 759 w_step = 1U << w_align; in jpu_bound_align_image() 764 if (*w < width && *w + w_step < w_max) in jpu_bound_align_image() 765 *w += w_step; in jpu_bound_align_image()
|