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