Lines Matching full:left
62 if (r->left < boundary->left) in v4l2_rect_map_inside()
63 r->left = boundary->left; in v4l2_rect_map_inside()
66 if (r->left + r->width > boundary->left + boundary->width) in v4l2_rect_map_inside()
67 r->left = boundary->left + boundary->width - r->width; in v4l2_rect_map_inside()
98 r->left = max(r1->left, r2->left); in v4l2_rect_intersect()
100 right = min(r1->left + r1->width, r2->left + r2->width); in v4l2_rect_intersect()
102 r->width = max(0, right - r->left); in v4l2_rect_intersect()
123 r->left = r->top = r->width = r->height = 0; in v4l2_rect_scale()
126 r->left = (((r->left - from->left) * to->width) / from->width) & ~1; in v4l2_rect_scale()
143 * IF the left side of r1 is to the right of the right side of r2 OR in v4l2_rect_overlap()
144 * the left side of r2 is to the right of the right side of r1 THEN in v4l2_rect_overlap()
147 if (r1->left >= r2->left + r2->width || in v4l2_rect_overlap()
148 r2->left >= r1->left + r1->width) in v4l2_rect_overlap()