Home | History | Annotate | Download | only in utils

Lines Matching refs:right

39   return ((rect.bottom > rect.top) && (rect.right > rect.left));
45 (rect1.right == rect2.right) &&
50 DLOGV_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f",
51 prefix, roi.left, roi.top, roi.right, roi.bottom);
56 rect->right = ROUND_UP_ALIGN_DOWN(rect->right, align_x);
70 res.right = MIN(rect1.right, rect2.right);
89 res.right = rect.right + FLOAT(x_offset);
101 if ((rect1.left == rect2.left) && (rect1.right == rect2.right)) {
108 if ((rect1.left == rect2.left) && (rect2.right <= rect1.right)) {
109 res.left = rect2.right;
110 } else if ((rect1.right == rect2.right) && (rect2.left >= rect1.left)) {
111 res.right = rect2.left;
135 res.right = MAX(rect1.right, rect2.right);
145 uint32_t split_width = UINT32(rect_temp.right - rect_temp.left) / split_count;
151 out_rects[count].right = MIN(rect_temp.right, aligned_right);
155 rect_temp.left = out_rects[count].right;
160 // If we have a horizontal flip, then we should be splitting the source from right to left
161 // to ensure that the right split will have an aligned width that matches the alignment on the
164 out_rects[0].right = out_rects[0].left + (out_rects[1].right - out_rects[1].left);
165 out_rects[1].left = out_rects[0].right;
167 Log(kTagRotator, "Adjusted Right", out_rects[1]);
183 out_rects[count].right = rect_temp.right;