Home
last modified time | relevance | path

Searched refs:wmax (Results 1 – 3 of 3) sorted by relevance

/drivers/media/v4l2-core/
Dv4l2-common.c337 void v4l_bound_align_image(u32 *w, unsigned int wmin, unsigned int wmax, in v4l_bound_align_image() argument
342 *w = clamp_align(*w, wmin, wmax, walign); in v4l_bound_align_image()
355 unsigned int wmaxa = __fls(wmax ^ (wmin - 1)); in v4l_bound_align_image()
363 *w = clamp_align(*w, wmin, wmax, walign + 1); in v4l_bound_align_image()
/drivers/mtd/nand/
Dnandsim.c455 unsigned long wmin = -1, wmax = 0, avg; in nandsim_debugfs_show() local
464 if (wear > wmax) in nandsim_debugfs_show()
465 wmax = wear; in nandsim_debugfs_show()
471 decile_max[i] = (wmax * (i + 1) + 5) / 10; in nandsim_debugfs_show()
474 decile_max[9] = wmax; in nandsim_debugfs_show()
490 seq_printf(m, "Maximum number of erases: %lu\n", wmax); in nandsim_debugfs_show()
/drivers/media/platform/s5p-jpeg/
Djpeg-core.c1391 u32 *w, unsigned int wmin, unsigned int wmax, in jpeg_bound_align_image() argument
1413 wmax = width; in jpeg_bound_align_image()
1418 v4l_bound_align_image(w, wmin, wmax, walign, h, hmin, hmax, halign, 0); in jpeg_bound_align_image()
1420 if (*w < width && (*w + w_step) < wmax) in jpeg_bound_align_image()