Lines Matching refs:__crop
552 struct v4l2_rect *__crop; in mt9p031_set_format() local
558 __crop = __mt9p031_get_pad_crop(mt9p031, cfg, format->pad, in mt9p031_set_format()
563 max_t(unsigned int, __crop->width / 7, in mt9p031_set_format()
565 __crop->width); in mt9p031_set_format()
567 max_t(unsigned int, __crop->height / 8, in mt9p031_set_format()
569 __crop->height); in mt9p031_set_format()
571 hratio = DIV_ROUND_CLOSEST(__crop->width, width); in mt9p031_set_format()
572 vratio = DIV_ROUND_CLOSEST(__crop->height, height); in mt9p031_set_format()
576 __format->width = __crop->width / hratio; in mt9p031_set_format()
577 __format->height = __crop->height / vratio; in mt9p031_set_format()
603 struct v4l2_rect *__crop; in mt9p031_set_selection() local
628 __crop = __mt9p031_get_pad_crop(mt9p031, cfg, sel->pad, sel->which); in mt9p031_set_selection()
630 if (rect.width != __crop->width || rect.height != __crop->height) { in mt9p031_set_selection()
640 *__crop = rect; in mt9p031_set_selection()