Searched defs:min_height (Results 1 - 7 of 7) sorted by path

/drivers/hid/
H A Dhid-ntrig.c31 static unsigned int min_height; variable
32 module_param(min_height, uint, 0644);
33 MODULE_PARM_DESC(min_height, "Minimum touch contact height to accept.");
80 __u16 min_height; member in struct:ntrig_data
262 return sprintf(buf, "%d\n", nd->min_height *
282 nd->min_height = val * nd->sensor_logical_height /
288 static DEVICE_ATTR(min_height, S_IWUSR | S_IRUGO, show_min_height,
510 nd->min_height = min_height *
681 nd->h < nd->min_height)
[all...]
/drivers/media/i2c/
H A Dov7670.c231 int min_height; /* Filter out smaller sizes */ member in struct:ov7670_info
939 * Don't consider values that don't match min_height and min_width
942 if (info->min_width || info->min_height)
947 wsize->height < info->min_height) {
1103 if (info->min_height && win->height < info->min_height)
1537 info->min_height = config->min_height;
/drivers/media/pci/bt8xx/
H A Dbttv-driver.c2000 __s32 min_height; local
2021 min_height = 32;
2035 if (min_height > max_height)
2044 min_height = c->min_scaled_height;
2055 min_height = min_height;
2061 *height = clamp(*height, min_height, max_height);
2077 *height < min_height ||
/drivers/media/platform/davinci/
H A Dvpbe_display.c633 int min_height = 1; local
654 min_height = 2;
671 if (!pixfmt->height || (pixfmt->height < min_height) ||
H A Dvpfe_capture.c818 u32 min_height = 1, min_width = 32, max_width, max_height; local
891 min_height = 2;
901 pixfmt->height = clamp((pixfmt->height), min_height, max_height);
/drivers/media/platform/omap3isp/
H A Dispccdc.c141 unsigned int min_width, min_height, min_size; local
175 min_height = ((input_height + lsc_cfg->initial_y + paxel_height - 1)
178 min_size = 4 * min_width * min_height;
187 if ((lsc_cfg->size / lsc_cfg->offset) < min_height) {
2200 fse->min_height = format.height;
H A Dispresizer.c792 unsigned int min_height; local
803 min_height = ((input->height - 7) * 256 - 32 - 64 * spv) / 1024 + 1;
804 min_height = max_t(unsigned int, min_height, MIN_OUT_HEIGHT);
807 output->height = clamp(output->height, min_height, max_height);
1197 unsigned int min_height = local
1205 crop->height = clamp_t(u32, crop->height, min_height, max_height);
1457 fse->min_height = format.height;

Completed in 1716 milliseconds