Home
last modified time | relevance | path

Searched refs:scaleH (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DAppTransition.java732 float scaleH = mTmpRect.height() / (float) appHeight; in createScaleUpAnimationLocked() local
733 Animation scale = new ScaleAnimation(scaleW, 1, scaleH, 1, in createScaleUpAnimationLocked()
735 computePivot(mTmpRect.top, scaleH)); in createScaleUpAnimationLocked()
1378 final float scaleH = enter ? sourceWidth / destWidth : destWidth / sourceWidth; in createAspectScaledThumbnailFreeformAnimationLocked() local
1390 new ScaleAnimation(scaleH, 1, scaleV, 1, scaleHCenter, scaleVCenter) in createAspectScaledThumbnailFreeformAnimationLocked()
1391 : new ScaleAnimation(1, scaleH, 1, scaleV, scaleHCenter, scaleVCenter); in createAspectScaledThumbnailFreeformAnimationLocked()
1438 float scaleH = appHeight / thumbHeight; in createThumbnailScaleAnimationLocked() local
1439 Animation scale = new ScaleAnimation(1, scaleW, 1, scaleH, in createThumbnailScaleAnimationLocked()
1441 computePivot(mTmpRect.top, 1 / scaleH)); in createThumbnailScaleAnimationLocked()
1455 float scaleH = appHeight / thumbHeight; in createThumbnailScaleAnimationLocked() local
[all …]
/frameworks/base/core/java/android/hardware/camera2/legacy/
DParameterUtils.java806 float scaleH = (NORMALIZED_RECTANGLE_MAX - NORMALIZED_RECTANGLE_MIN) * 1.0f / in convertMeteringRectangleToLegacy() local
814 transform.postScale(scaleW, scaleH); in convertMeteringRectangleToLegacy()
963 float scaleH = previewCrop.height() * 1.0f / in convertCameraAreaToActiveArrayRectangle() local
976 transform.postScale(scaleW, scaleH); in convertCameraAreaToActiveArrayRectangle()
/frameworks/base/core/java/android/widget/
DSimpleMonthView.java910 final float scaleH = paddedHeight / (float) measuredPaddedHeight; in onLayout() local
911 final int monthHeight = (int) (mDesiredMonthHeight * scaleH); in onLayout()
914 mDayOfWeekHeight = (int) (mDesiredDayOfWeekHeight * scaleH); in onLayout()
915 mDayHeight = (int) (mDesiredDayHeight * scaleH); in onLayout()
/frameworks/ml/nn/common/operations/
DGenerateProposals.cpp1310 float scaleX, float scaleH, float scaleW, bool useRegularNms, int32_t maxNumDetections, in detectionPostprocessFloat32() argument
1339 float hHalf = anchorBase[2] * std::exp(deltaBase[2] / scaleH) * 0.5f; in detectionPostprocessFloat32()
1415 float scaleX, float scaleH, float scaleW, bool useRegularNms, int32_t maxNumDetections, in detectionPostprocessFloat16() argument
1430 anchor_float32.data(), anchorShape, scaleY, scaleX, scaleH, scaleW, useRegularNms, in detectionPostprocessFloat16()