• Home
  • Raw
  • Download

Lines Matching refs:bottom

40   return ((rect.bottom > rect.top) && (rect.right > rect.left));  in IsValid()
47 (rect1.bottom == rect2.bottom)); in IsCongruent()
52 prefix, roi.left, roi.top, roi.right, roi.bottom); in LogI()
57 prefix, roi.left, roi.top, roi.right, roi.bottom); in Log()
64 rect->bottom = ROUND_UP_ALIGN_DOWN(rect->bottom, align_y); in Normalize()
77 res.bottom = std::min(rect1.bottom, rect2.bottom); in Intersection()
96 res.bottom = rect.bottom + FLOAT(y_offset); in Reposition()
108 if ((rect1.top == rect2.top) && (rect2.bottom <= rect1.bottom)) { in Subtract()
109 res.top = rect2.bottom; in Subtract()
110 } else if ((rect1.bottom == rect2.bottom) && (rect2.top >= rect1.top)) { in Subtract()
111 res.bottom = rect2.top; in Subtract()
113 } else if ((rect1.top == rect2.top) && (rect1.bottom == rect2.bottom)) { in Subtract()
142 res.bottom = std::max(rect1.bottom, rect2.bottom); in Union()
159 out_rects[count].bottom = rect_temp.bottom; in SplitLeftRight()
181 uint32_t split_height = UINT32(rect_temp.bottom - rect_temp.top) / split_count; in SplitTopBottom()
187 out_rects[count].bottom = std::min(rect_temp.bottom, aligned_bottom); in SplitTopBottom()
191 rect_temp.top = out_rects[count].bottom; in SplitTopBottom()
200 out_rects[0].bottom = out_rects[0].top + (out_rects[1].bottom - out_rects[1].top); in SplitTopBottom()
201 out_rects[1].top = out_rects[0].bottom; in SplitTopBottom()
218 float src_domain_height = src_domain.bottom - src_domain.top; in MapRect()
220 float dst_domain_height = dst_domain.bottom - dst_domain.top; in MapRect()
228 out_rect->bottom = dst_domain.top + (height_ratio * modified_in_rect.bottom); in MapRect()
238 float in_height = in_rect.bottom - in_rect.top; in TransformHV()
249 out_rect->bottom = src_domain.bottom - y_offset; in TransformHV()
250 out_rect->top = out_rect->bottom - in_height; in TransformHV()
260 float input_height = in_rect.bottom - in_rect.top; in GetOrientation()
284 *crop_height = crop.bottom - crop.top; in GetCropAndDestination()
290 *dst_height = dst.bottom - dst.top; in GetCropAndDestination()