Lines Matching defs:__crop
380 struct v4l2_rect *__crop;
386 __crop = __mt9t001_get_pad_crop(mt9t001, cfg, format->pad,
391 max_t(unsigned int, __crop->width / 8,
393 __crop->width);
395 max_t(unsigned int, __crop->height / 8,
397 __crop->height);
399 hratio = DIV_ROUND_CLOSEST(__crop->width, width);
400 vratio = DIV_ROUND_CLOSEST(__crop->height, height);
404 __format->width = __crop->width / hratio;
405 __format->height = __crop->height / vratio;
431 struct v4l2_rect *__crop;
458 __crop = __mt9t001_get_pad_crop(mt9t001, cfg, sel->pad, sel->which);
460 if (rect.width != __crop->width || rect.height != __crop->height) {
470 *__crop = rect;