Searched refs:tmp_w (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/drivers/media/platform/exynos-gsc/ |
D | gsc-core.c | 397 u32 min_w, min_h, tmp_w, tmp_h; in gsc_try_fmt_mplane() local 438 tmp_w = pix_mp->width; in gsc_try_fmt_mplane() 443 if (tmp_w != pix_mp->width || tmp_h != pix_mp->height) in gsc_try_fmt_mplane() 445 tmp_w, tmp_h, pix_mp->width, pix_mp->height); in gsc_try_fmt_mplane() 496 void gsc_check_crop_change(u32 tmp_w, u32 tmp_h, u32 *w, u32 *h) in gsc_check_crop_change() argument 498 if (tmp_w != *w || tmp_h != *h) { in gsc_check_crop_change() 500 *w, *h, tmp_w, tmp_h); in gsc_check_crop_change() 501 *w = tmp_w; in gsc_check_crop_change() 524 u32 mod_x = 0, mod_y = 0, tmp_w, tmp_h; in gsc_try_crop() local 542 tmp_w = cr->c.width; in gsc_try_crop() [all …]
|
D | gsc-core.h | 397 void gsc_check_crop_change(u32 tmp_w, u32 tmp_h, u32 *w, u32 *h);
|
/linux-4.1.27/drivers/media/platform/soc_camera/ |
D | soc_scale_crop.c | 222 unsigned int width = mf->width, height = mf->height, tmp_w, tmp_h; in client_s_fmt() local 257 tmp_w = mf->width; in client_s_fmt() 261 while ((width > tmp_w || height > tmp_h) && in client_s_fmt() 262 tmp_w < max_width && tmp_h < max_height) { in client_s_fmt() 263 tmp_w = min(2 * tmp_w, max_width); in client_s_fmt() 265 mf->width = tmp_w; in client_s_fmt()
|