Lines Matching refs:__crop
575 struct v4l2_rect *__crop; in mt9p031_set_format() local
581 __crop = __mt9p031_get_pad_crop(mt9p031, cfg, format->pad, in mt9p031_set_format()
586 max_t(unsigned int, __crop->width / 7, in mt9p031_set_format()
588 __crop->width); in mt9p031_set_format()
590 max_t(unsigned int, __crop->height / 8, in mt9p031_set_format()
592 __crop->height); in mt9p031_set_format()
594 hratio = DIV_ROUND_CLOSEST(__crop->width, width); in mt9p031_set_format()
595 vratio = DIV_ROUND_CLOSEST(__crop->height, height); in mt9p031_set_format()
599 __format->width = __crop->width / hratio; in mt9p031_set_format()
600 __format->height = __crop->height / vratio; in mt9p031_set_format()
626 struct v4l2_rect *__crop; in mt9p031_set_selection() local
651 __crop = __mt9p031_get_pad_crop(mt9p031, cfg, sel->pad, sel->which); in mt9p031_set_selection()
653 if (rect.width != __crop->width || rect.height != __crop->height) { in mt9p031_set_selection()
663 *__crop = rect; in mt9p031_set_selection()