Home | History | Annotate | Download | only in utils

Lines Matching refs:left

40   return ((rect.bottom > rect.top) && (rect.right > rect.left));
44 return ((rect1.left == rect2.left) &&
51 DLOGV_IF(debug_tag, "%s: left = %.0f, top = %.0f, right = %.0f, bottom = %.0f",
52 prefix, roi.left, roi.top, roi.right, roi.bottom);
56 rect->left = ROUND_UP_ALIGN_UP(rect->left, align_x);
69 res.left = std::max(rect1.left, rect2.left);
88 res.left = rect.left + FLOAT(x_offset);
102 if ((rect1.left == rect2.left) && (rect1.right == rect2.right)) {
109 if ((rect1.left == rect2.left) && (rect2.right <= rect1.right)) {
110 res.left = rect2.right;
111 } else if ((rect1.right == rect2.right) && (rect2.left >= rect1.left)) {
112 res.right = rect2.left;
134 res.left = std::min(rect1.left, rect2.left);
146 uint32_t split_width = UINT32(rect_temp.right - rect_temp.left) / split_count;
150 float aligned_right = rect_temp.left + aligned_width;
151 out_rects[count].left = rect_temp.left;
156 rect_temp.left = out_rects[count].right;
161 // If we have a horizontal flip, then we should be splitting the source from right to left
165 out_rects[0].right = out_rects[0].left + (out_rects[1].right - out_rects[1].left);
166 out_rects[1].left = out_rects[0].right;
167 Log(kTagRotator, "Adjusted Left", out_rects[0]);
183 out_rects[count].left = rect_temp.left;
208 float src_domain_width = src_domain.right - src_domain.left;
210 float dst_domain_width = dst_domain.right - dst_domain.left;
216 out_rect->left = dst_domain.left + (width_ratio * in_rect.left);
218 out_rect->right = dst_domain.left + (width_ratio * in_rect.right);
227 float input_width = in_rect.right - in_rect.left;