HomeSort by relevance Sort by last modified time
    Searched refs:Matrix (Results 676 - 700 of 946) sorted by null

<<21222324252627282930>>

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterVignette.java 22 import android.graphics.Matrix;
99 Matrix m = getOriginalToScreenMatrix(w, h);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/
CameraOrientationActivity.java 20 import android.graphics.Matrix;
508 // leave image the same via identity matrix
512 // use matrix to transform the image
513 Matrix matrixMirrorX = new Matrix();
515 Matrix mat = new Matrix();
  /cts/tests/camera/src/android/hardware/camera2/cts/testcases/
Camera2MultiViewTestCase.java 25 import android.graphics.Matrix;
181 Matrix transformMatrix = textureView.getTransform(null);
191 transformMatrix.setRectToRect(viewRect, bufRect, Matrix.ScaleToFit.FILL);
209 Matrix mTransformMatrix;
210 TransformUpdater(TextureView view, Matrix matrix) {
212 mTransformMatrix = matrix;
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 49 * such that the factorized matrix is P A P^-1.
69 typedef Matrix<Scalar,Dynamic,1> VectorType;
70 typedef Matrix<StorageIndex,Dynamic,1> VectorI;
86 explicit SimplicialCholeskyBase(const MatrixType& matrix)
89 derived().compute(matrix);
105 * \c NumericalIssue if the matrix.appears to be negative.
192 /** Computes the sparse Cholesky decomposition of \a matrix */
194 void compute(const MatrixType& matrix)
196 eigen_assert(matrix.rows()==matrix.cols())
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixPower.h 20 * \brief Proxy for the matrix power of some matrix.
22 * \tparam MatrixType type of the base, a matrix.
24 * This class holds the arguments to the matrix power until it is
49 * \param[in] p scalar, the exponent of the matrix power.
55 * \brief Compute the matrix power.
74 * \brief Class for computing matrix powers.
77 * of the Matrix class template.
84 * faciliate future development of triangular matrix functions.
116 * \param[in] T the base of the matrix power
    [all...]
  /external/llvm/include/llvm/CodeGen/
RegAllocPBQP.h 44 MatrixMetadata(const Matrix& M)
334 typedef PBQP::Matrix RawMatrix;
336 typedef RAMatrix Matrix;
337 typedef PBQP::PoolCostAllocator<Vector, Matrix> CostAllocator;
390 void handleUpdateCosts(EdgeId EId, const Matrix& NewCosts) {
  /packages/apps/Launcher3/src/com/android/launcher3/
Utilities.java 32 import android.graphics.Matrix;
83 private static final Matrix sMatrix = new Matrix();
84 private static final Matrix sInverseMatrix = new Matrix();
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusheaders.h 48 class Matrix;
517 Status GetRegionScans(const Matrix *matrix,
519 Status GetRegionScans(const Matrix *matrix,
521 UINT GetRegionScansCount(const Matrix *matrix) const;
546 Status Transform(const Matrix *matrix);
gdipluspath.h 367 Status Flatten(const Matrix *matrix = NULL,
371 matrix ? matrix->nativeMatrix : NULL,
374 Status GetBounds(RectF *bounds, const Matrix *matrix = NULL,
379 matrix ? matrix->nativeMatrix : NULL,
382 Status GetBounds(Rect *bounds, const Matrix *matrix = NULL
    [all...]
  /cts/tests/camera/src/android/hardware/cts/
CameraGLTest.java 27 import android.opengl.Matrix;
646 Matrix.setIdentityM(mSTMatrix, 0);
647 Matrix.setIdentityM(mMMatrix, 0);
701 Matrix.multiplyMM(mMVPMatrix, 0, mVMatrix, 0, mMMatrix, 0);
702 Matrix.multiplyMM(mMVPMatrix, 0, mProjMatrix, 0, mMVPMatrix, 0);
718 Matrix.frustumM(mProjMatrix, 0, -mRatio, mRatio, -1, 1, 3, 7);
    [all...]
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 50 // typedef typename Matrix<Scalar,4,1> Coefficients;
52 typedef Matrix<Scalar,3,1> Vector3;
53 /** the equivalent rotation matrix type */
54 typedef Matrix<Scalar,3,3> Matrix3;
138 /** \returns an equivalent 3x3 rotation matrix */
218 typedef Matrix<_Scalar,4,1,_Options> Coefficients;
263 * - a rotation matrix expression,
315 typedef Map<Matrix<_Scalar,4,1>, _Options> Coefficients;
323 typedef Map<const Matrix<_Scalar,4,1>, _Options> Coefficients;
463 * then it is much more efficient to first convert it to a 3x3 Matrix
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
SurfaceTextureRenderer.java 30 import android.opengl.Matrix;
136 * s and t in the inclusive range [0, 1], and the matrix from
199 Matrix.setIdentityM(mSTMatrix, 0);
256 Matrix.setIdentityM(mMVPMatrix, /*smOffset*/0);
276 android.graphics.Matrix boxingXform = new android.graphics.Matrix();
277 boxingXform.setRectToRect(output, intermediate, android.graphics.Matrix.ScaleToFit.CENTER);
289 Matrix.scaleM(mMVPMatrix, /*offset*/0, /*x*/scaleX, /*y*/scaleY, /*z*/1);
    [all...]
  /cts/tests/tests/opengl/src/android/opengl/cts/
CompressedTextureSurfaceView.java 25 import android.opengl.Matrix;
132 Matrix.setIdentityM(mSTMatrix, 0);
163 Matrix.setIdentityM(mMVPMatrix, 0);
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IncompleteCholesky.h 33 * where L is a lower triangular factor, S is a diagonal scaling matrix, and P is a
36 * \b Shifting \b strategy: Let \f$ B = S P A P' S \f$ be the scaled matrix on which the factorization is carried out,
38 * on the matrix B. Otherwise, the factorization is performed on the shifted matrix \f$ B + (\sigma+|\beta| I \f$ where
62 typedef Matrix<Scalar,Dynamic,1> VectorSx;
63 typedef Matrix<RealScalar,Dynamic,1> VectorRx;
64 typedef Matrix<StorageIndex,Dynamic, 1> VectorIx;
81 /** Constructor computing the incomplete factorization for the given matrix \a matrix.
84 IncompleteCholesky(const MatrixType& matrix) : m_initialShift(1e-3),m_factorizationIsOk(false
    [all...]
  /external/eigen/Eigen/src/LU/
InverseImpl.h 26 static inline void run(const MatrixType& matrix, ResultType& result)
28 result = matrix.partialPivLu().inverse();
43 static inline void run(const MatrixType& matrix, ResultType& result)
46 internal::evaluator<MatrixType> matrixEval(matrix);
56 const MatrixType& matrix,
64 determinant = matrix.coeff(0,0);
77 const MatrixType& matrix, const typename ResultType::Scalar& invdet,
80 result.coeffRef(0,0) = matrix.coeff(1,1) * invdet;
81 result.coeffRef(1,0) = -matrix.coeff(1,0) * invdet;
82 result.coeffRef(0,1) = -matrix.coeff(0,1) * invdet
    [all...]
  /external/eigen/test/
geo_quaternion.cpp 51 typedef Matrix<Scalar,3,1> Vector3;
52 typedef Matrix<Scalar,3,3> Matrix3;
93 // rotation matrix conversion
129 v3 = (v1.array()+eps).matrix();
140 v3 = (v1.array()+eps).matrix();
182 typedef Matrix<Scalar,3,1> Vector3;
  /frameworks/base/core/java/android/app/
ExitTransitionCoordinator.java 24 import android.graphics.Matrix;
412 Matrix matrix = new Matrix(); local
420 captureSharedElementState(view, name, bundle, matrix, bounds);
  /frameworks/base/graphics/java/android/graphics/
Path.java 691 * Add a copy of src to the path, transformed by matrix
695 public void addPath(Path src, Matrix matrix) {
697 nAddPath(mNativePath, src.mNativePath, matrix.native_instance);
748 * Transform the points in this path by matrix, and write the answer
751 * @param matrix The matrix to apply to the path
755 public void transform(Matrix matrix, Path dst) {
761 nTransform(mNativePath, matrix.native_instance, dstNative)
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewThumbnail.java 29 import android.graphics.Matrix;
77 private Matrix mMatrix = new Matrix();
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
AndroidCamera2Settings.java 21 import android.graphics.Matrix;
572 Matrix translateMatrix = new Matrix();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
EclipseControl.java 22 import android.graphics.Matrix;
49 private Matrix mScrToImg;
102 public void setScrImageInfo(Matrix scrToImg, Rect imageBounds) {
131 // Test if the matrix is swapping x and y
  /packages/apps/Launcher3/src/com/android/launcher3/folder/
PreviewBackground.java 25 import android.graphics.Matrix;
65 private final Matrix mShaderMatrix = new Matrix();
  /packages/apps/Launcher3/src/com/android/launcher3/graphics/
IconNormalizer.java 23 import android.graphics.Matrix;
83 private final Matrix mMatrix;
122 mMatrix = new Matrix();
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
WallpaperCropActivity.java 28 import android.graphics.Matrix;
375 Matrix rotateMatrix = new Matrix();
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
PhotoSource.java 25 import android.graphics.Matrix;
218 Matrix matrix = new Matrix(); local
219 matrix.setRotate(data.orientation,
224 matrix, true);

Completed in 1662 milliseconds

<<21222324252627282930>>