• Home
  • Raw
  • Download

Lines Matching refs:bottom

240     ctx->mViewFrame[HWC_DISPLAY_PRIMARY].bottom =  in initContext()
390 int h = rect.bottom - rect.top; in getActionSafePosition()
445 rect.bottom = h + rect.top; in getActionSafePosition()
473 inRect.bottom - inRect.top); in getAspectRatioPosition()
475 outRect.bottom - outRect.top); in getAspectRatioPosition()
490 height = float(rect.bottom - rect.top); in getAspectRatioPosition()
521 float tempHeight = float(r.bottom - r.top); in getAspectRatioPosition()
560 outRect.bottom = outPos.y + outPos.h; in getAspectRatioPosition()
610 displayFrame.bottom = dstHeight; in calcExtDisplayPosition()
632 displayFrame.bottom = int(hRatio*(float)displayFrame.bottom); in calcExtDisplayPosition()
690 dst_h = displayFrame.bottom - displayFrame.top; in isDownscaleRequired()
692 src_h = sourceCrop.bottom - sourceCrop.top; in isDownscaleRequired()
705 dst_h = displayFrame.bottom - displayFrame.top; in needsScaling()
707 src_h = sourceCrop.bottom - sourceCrop.top; in needsScaling()
748 dst_height_l = dstL.bottom - dstL.top; in needsScalingWithSplit()
750 src_height_l = cropL.bottom - cropL.top; in needsScalingWithSplit()
758 dst_height_r = dstR.bottom - dstR.top; in needsScalingWithSplit()
760 src_height_r = cropR.bottom - cropR.top; in needsScalingWithSplit()
796 dst.right > hw_w || dst.bottom > hw_h) { in trimLayer()
815 layer->sourceCropf.bottom = (float)crop.bottom; in trimList()
1037 int& crop_b = crop.bottom; in calculate_crop_rects()
1039 int crop_h = crop.bottom - crop.top; in calculate_crop_rects()
1044 int& dst_b = dst.bottom; in calculate_crop_rects()
1046 int dst_h = abs(dst.bottom - dst.top); in calculate_crop_rects()
1051 const int& sci_b = scissor.bottom; in calculate_crop_rects()
1093 (rect1.right == rect2.right) && (rect1.bottom == rect2.bottom)); in isSameRect()
1098 return ((rect.bottom > rect.top) && (rect.right > rect.left)) ; in isValidRect()
1103 lhs.right == rhs.right && lhs.bottom == rhs.bottom ) in operator ==()
1118 res.bottom = rect.bottom + y_off; in moveRect()
1136 res.bottom = min(rect1.bottom, rect2.bottom); in getIntersection()
1160 res.bottom = max(rect1.bottom, rect2.bottom); in getUnion()
1172 if((rect1.top == rect2.top) && (rect2.bottom <= rect1.bottom)) in deductRect()
1173 res.top = rect2.bottom; in deductRect()
1174 else if((rect1.bottom == rect2.bottom)&& (rect2.top >= rect1.top)) in deductRect()
1175 res.bottom = rect2.top; in deductRect()
1177 else if((rect1.top == rect2.top) && (rect1.bottom == rect2.bottom)) { in deductRect()
1215 layer->sourceCropf.bottom = (float)bottomCrop.bottom; in optimizeLayerRects()
1239 nwr.bottom = list->hwLayers[0].displayFrame.bottom; in getNonWormholeRegion()
1532 crop.bottom - crop.top); in configRotator()
1551 int crop_h = crop.bottom - crop.top; in configMdp()
1556 int posH = pos.bottom - pos.top; in configMdp()
1579 int dst_h = dst.bottom - dst.top; in configColorLayer()
1610 crop.bottom - crop.top); in updateSource()
1627 crop.bottom = transformedCrop.y + transformedCrop.h; in updateSource()
1670 crop.bottom - crop.top, in configureNonSplit()
1672 dst.bottom - dst.top); in configureNonSplit()
1944 hwc_rect_t scissor = {dst.left, dst.top, lSplit, dst.bottom }; in configureSourceSplit()
1950 hwc_rect_t scissor = {lSplit, dst.top, dst.right, dst.bottom }; in configureSourceSplit()
2167 if (rect1.bottom == rect2.bottom) in isPeripheral()
2180 int src_h = crop.bottom - crop.top; in setBwc()
2182 int dst_h = dst.bottom - dst.top; in setBwc()
2268 if((t_roi.bottom - t_roi.top) < MIN_HEIGHT) { in getSanitizeROI()
2269 if((t_roi.top + MIN_HEIGHT) > boundary.bottom) in getSanitizeROI()
2270 t_roi.top = t_roi.bottom - MIN_HEIGHT; in getSanitizeROI()
2272 t_roi.bottom = t_roi.top + MIN_HEIGHT; in getSanitizeROI()
2299 int height = t_roi.bottom - t_roi.top; in getSanitizeROI()
2301 t_roi.bottom = t_roi.top + height; in getSanitizeROI()
2303 if(t_roi.bottom > boundary.bottom) { in getSanitizeROI()
2304 t_roi.bottom = boundary.bottom; in getSanitizeROI()
2305 t_roi.top = t_roi.bottom - height; in getSanitizeROI()