Home | History | Annotate | Download | only in utils

Lines Matching refs:left

39   return ((rect.bottom > rect.top) && (rect.right > rect.left));
43 return ((rect1.left == rect2.left) &&
50 DLOGV_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f",
51 prefix, roi.left, roi.top, roi.right, roi.bottom);
55 rect->left = ROUND_UP_ALIGN_UP(rect->left, align_x);
68 res.left = MAX(rect1.left, rect2.left);
87 res.left = rect.left + 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;
133 res.left = MIN(rect1.left, rect2.left);
145 uint32_t split_width = UINT32(rect_temp.right - rect_temp.left) / split_count;
149 float aligned_right = rect_temp.left + aligned_width;
150 out_rects[count].left = rect_temp.left;
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
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;
166 Log(kTagRotator, "Adjusted Left", out_rects[0]);
182 out_rects[count].left = rect_temp.left;