Searched refs:tmpMatrix (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | TrustedPresentationListenerController.java | 250 float[] tmpMatrix = new float[9]; in computeTpl() local 268 tmpInverseMatrix.getValues(tmpMatrix); in computeTpl() 269 float scaleX = (float) Math.sqrt(tmpMatrix[MSCALE_X] * tmpMatrix[MSCALE_X] in computeTpl() 270 + tmpMatrix[MSKEW_X] * tmpMatrix[MSKEW_X]); in computeTpl() 271 float scaleY = (float) Math.sqrt(tmpMatrix[MSCALE_Y] * tmpMatrix[MSCALE_Y] in computeTpl() 272 + tmpMatrix[MSKEW_Y] * tmpMatrix[MSKEW_Y]); in computeTpl()
|
D | WindowState.java | 991 final Matrix tmpMatrix = new Matrix(); in getKeepClearAreas() local 993 getKeepClearAreas(outRestricted, outUnrestricted, tmpMatrix, tmpFloat9); in getKeepClearAreas() 1008 Matrix tmpMatrix, float[] float9) { in getKeepClearAreas() argument 1009 outRestricted.addAll(getRectsInScreenSpace(mKeepClearAreas, tmpMatrix, float9)); in getKeepClearAreas() 1011 getRectsInScreenSpace(mUnrestrictedKeepClearAreas, tmpMatrix, float9)); in getKeepClearAreas() 1017 List<Rect> getRectsInScreenSpace(List<Rect> rects, Matrix tmpMatrix, float[] float9) { in getRectsInScreenSpace() argument 1018 getTransformationMatrix(float9, tmpMatrix); in getRectsInScreenSpace() 1025 tmpMatrix.mapRect(tmpRect); in getRectsInScreenSpace()
|
D | DisplayContent.java | 6094 final Matrix tmpMatrix = new Matrix(); in getKeepClearAreas() local 6107 w.getKeepClearAreas(outRestricted, outUnrestricted, tmpMatrix, tmpFloat9); in getKeepClearAreas()
|
/frameworks/base/core/java/android/app/assist/ |
D | AssistStructure.java | 570 void writeSelfToParcel(Parcel out, PooledStringWriter pwriter, float[] tmpMatrix) { in writeSelfToParcel() argument 808 @Nullable float[] tmpMatrix) { in initializeFromParcelWithoutChildren() argument 891 if (tmpMatrix == null) { in initializeFromParcelWithoutChildren() 892 tmpMatrix = new float[9]; in initializeFromParcelWithoutChildren() 894 in.readFloatArray(tmpMatrix); in initializeFromParcelWithoutChildren() 895 mMatrix.setValues(tmpMatrix); in initializeFromParcelWithoutChildren() 938 boolean sanitizeOnWrite, @Nullable float[] tmpMatrix, boolean willWriteChildren) { in writeSelfToParcel() argument 1129 if (tmpMatrix == null) { in writeSelfToParcel() 1130 tmpMatrix = new float[9]; in writeSelfToParcel() 1132 mMatrix.getValues(tmpMatrix); in writeSelfToParcel() [all …]
|
/frameworks/native/services/surfaceflinger/DisplayHardware/ |
D | HidlComposerHal.cpp | 1069 [&](const auto& tmpError, const auto& tmpMatrix) { in getDataspaceSaturationMatrix() argument 1074 *outMatrix = mat4(tmpMatrix.data()); in getDataspaceSaturationMatrix()
|
/frameworks/base/services/accessibility/java/com/android/server/accessibility/ |
D | AccessibilityManagerService.java | 639 final Matrix tmpMatrix = pair.first; in getWindowTransformationMatrixAndMagnificationSpec() local 642 tmpMatrix.postScale(spec.scale, spec.scale); in getWindowTransformationMatrixAndMagnificationSpec() 643 tmpMatrix.postTranslate(spec.offsetX, spec.offsetY); in getWindowTransformationMatrixAndMagnificationSpec() 645 tmpMatrix.getValues(outTransformationMatrix); in getWindowTransformationMatrixAndMagnificationSpec()
|