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