/packages/apps/Camera2/src/com/android/camera/util/ |
AspectRatio.java | 185 int cropWidth = area.height() * mWidth / mHeight; 186 int cropLeft = (area.width() - cropWidth) / 2; 187 int cropRight = cropLeft + cropWidth;
|
/frameworks/av/media/libstagefright/colorconversion/ |
ColorConverter.cpp | 137 size_t ColorConverter::BitmapParams::cropWidth() const { 165 && src.cropWidth() == dst.cropWidth() 233 for (size_t x = 0; x < src.cropWidth(); x += 2) { 264 if (x + 1 < src.cropWidth()) { 296 (uint8 *)dst_ptr, dst.mStride, src.cropWidth(), src.cropHeight()); 301 (uint8 *)dst_ptr, dst.mStride, src.cropWidth(), src.cropHeight(), libyuv::FOURCC_ABGR); 306 (uint8 *)dst_ptr, dst.mStride, src.cropWidth(), src.cropHeight(), libyuv::FOURCC_ARGB); 432 for (size_t x = 0; x < src.cropWidth(); x += 2) { 469 bool uncropped = x + 1 < src.cropWidth(); [all...] |
/hardware/qcom/display/msm8994/libhwcomposer/ |
hwc_fbupdate.cpp | 527 const uint32_t cropWidth = sourceCrop.right - sourceCrop.left; 534 if((cropWidth > qdutils::MDPVersion::getInstance().getMaxPipeWidth()) or 536 (cropWidth > lSplit or layerClock > mixerClock))) {
|
hwc_mdpcomp.cpp | [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
PhotoProcessor.java | 207 int cropWidth = original.getWidth(); 211 if (forceCropToSquare && cropWidth != cropHeight) { 213 if (cropHeight > cropWidth) { 214 cropTop = (cropHeight - cropWidth) / 2; 215 cropHeight = cropWidth; 217 cropLeft = (cropWidth - cropHeight) / 2; 218 cropWidth = cropHeight; 222 final float scaleFactor = Math.min(1f, ((float) maxDim) / Math.max(cropWidth, cropHeight)); 225 final int newWidth = (int) (cropWidth * scaleFactor); 239 cropLeft + cropWidth, cropTop + cropHeight) [all...] |
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
AndroidCamera2Settings.java | 561 float cropHeight, cropWidth; 565 cropWidth = cropHeight * aspectRatioPreview; 568 cropWidth = requestedCrop.width(); 569 cropHeight = cropWidth / aspectRatioPreview; 573 RectF cropRect = new RectF(/*left*/0, /*top*/0, cropWidth, cropHeight);
|
/frameworks/native/services/surfaceflinger/ |
BufferLayerConsumer.cpp | 619 const int32_t cropWidth = imageCrop.width(); 621 if (mCreated && mCropWidth == cropWidth && mCropHeight == cropHeight) { 627 cropWidth, cropHeight); 629 mCropWidth = cropWidth;
|
/cts/tests/tests/media/libmediandkjni/ |
codec-utils-jni.cpp | 56 size_t cropWidth; 232 img->plane[ix].cropWidth = 267 for (size_t x = img->plane[ix].cropWidth; x > 0; --x) { 295 for (size_t x = img->plane[ix].cropWidth; x > 0; --x) { 330 tgt->plane[0].cropWidth, tgt->plane[0].cropHeight, 336 src->plane[0].cropWidth, src->plane[0].cropHeight, 347 for (size_t x = 0; x < tgt->plane[ix].cropWidth; ++x) { 348 *col = srcRow[src->plane[ix].colInc * (x % src->plane[ix].cropWidth)]; 371 for (size_t x = img->plane[ix].cropWidth; x > 0; --x) { 408 for (size_t x = img->plane[0].cropWidth; x; --x) [all...] |
/hardware/intel/common/libmix/videodecoder/ |
VideoDecoderBase.cpp | [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BitmapRegionDecoderTest.java | 419 int cropWidth = Math.min(w, scaledDim); 421 Rect crop = new Rect(0 ,0, cropWidth, cropHeight); [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
EncodeDecodeTest.java | [all...] |
/frameworks/base/core/java/android/app/ |
WallpaperManager.java | 748 float cropWidth = outWidth * (inHeight / (float) outHeight); 749 cropRect.left = (inWidth - cropWidth) * horizontalAlignment; 750 cropRect.right = cropRect.left + cropWidth; [all...] |
/hardware/qcom/display/msm8084/libhwcomposer/ |
hwc_mdpcomp.cpp | [all...] |
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_mdpcomp.cpp | [all...] |
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/ |
CameraTestUtils.java | [all...] |
/frameworks/opt/photoviewer/src/com/android/ex/photo/views/ |
PhotoView.java | 630 final int cropWidth = mCropRect.right - mCropRect.left; 631 final float scaleWidth = CROPPED_SIZE / cropWidth; 632 final float scaleHeight = CROPPED_SIZE / cropWidth; [all...] |
/cts/tests/camera/utils/src/android/hardware/camera2/cts/ |
CameraTestUtils.java | [all...] |