Lines Matching refs:left
144 float left = crop_left * mActiveArrayW / mSensorW; in toActiveArray() local
152 left = left * zoom_ratio - (zoom_ratio - 1) * 0.5f * mActiveArrayW; in toActiveArray()
157 crop_left = std::round(left); in toActiveArray()
222 float left = crop_left / zoom_ratio + in applyZoomRatioHelper() local
231 left = left * mSensorW / mActiveArrayW; in applyZoomRatioHelper()
237 crop_left = std::round(left); in applyZoomRatioHelper()
292 void QCamera3CropRegionMapper::boundToSize(int32_t& left, int32_t& top, in boundToSize() argument
295 if (left < 0) { in boundToSize()
296 left = 0; in boundToSize()
298 if (left >= bound_w) { in boundToSize()
299 left = bound_w - 1; in boundToSize()
308 if ((left + width) > bound_w) { in boundToSize()
309 width = bound_w - left; in boundToSize()