/external/eigen/test/ |
redux.cpp | 137 CALL_SUBTEST_1( matrixRedux(Matrix<float, 1, 1>()) );
|
/external/llvm/include/llvm/CodeGen/PBQP/Heuristics/ |
Briggs.h | 313 Matrix &eCosts = getGraph().getEdgeCosts(eItr);
|
/external/skia/src/animator/ |
SkDrawExtraPathEffect.cpp | 54 SkDrawMatrix* matrix; member in class:SkDrawShape2DPathEffect 121 SkDrawMatrix* matrix; local 123 matrix = (SkDrawMatrix*) fDraw->addMatrix; 129 matrix = (SkDrawMatrix*) apply->getScope(); 131 if (matrix) { 132 m = matrix->getMatrix(); 171 SK_MEMBER(addMatrix, Drawable), // either matrix or apply 230 const SkMatrix& matrix) : Sk2DPathEffect(matrix), fDraw(draw), fMaker(maker) { 265 if (fDraw->matrix) { 266 SkDrawMatrix* matrix; local [all...] |
/cts/tests/tests/graphics/src/android/graphics/cts/ |
BitmapTest.java | 26 import android.graphics.Matrix; 251 ret = Bitmap.createBitmap(mBitmap, 10, 10, 50, 50, new Matrix(), true);
|
/external/eigen/Eigen/src/Core/ |
PlainObjectBase.h | 59 struct dense_xpr_base_dispatcher_for_doxygen<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 60 : public MatrixBase<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > {}; 195 /** \returns a const pointer to the data array of this matrix */ 199 /** \returns a pointer to the data array of this matrix */ 203 /** Resizes \c *this to a \a rows x \a cols matrix. 206 * matrix as long as fixed dimensions are left unchanged. If you only want to change the number 237 * than 1. For example it will not work with Matrix<double, 2, Dynamic>. 260 /** Resizes the matrix, changing only the number of columns. For the parameter of type NoChange_t, just pass the special value \c NoChange 273 /** Resizes the matrix, changing only the number of rows. For the parameter of type NoChange_t, just pass the special value \c NoChange 312 /** Resizes the matrix to \a rows x \a cols while leaving old values untouched [all...] |
DenseBase.h | 21 * This class is the base that is inherited by all dense objects (matrix, vector, arrays, 24 * \tparam Derived is the derived type, e.g., a matrix type or an expression. 183 * \note For a vector, this returns just 1. For a matrix (non-vector), this is the major dimension 185 * column-major matrix, and the number of rows for a row-major matrix. */ 194 * \note For a vector, this is just the size. For a matrix (non-vector), this is the minor dimension 196 * column-major matrix, and the number of columns for a row-major matrix. */ 204 * Matrix::resize() and Array::resize(). The present method only asserts that the new size equals the old size, and does 214 * Matrix::resize() and Array::resize(). The present method only asserts that the new size equals the old si (…) [all...] |
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/ |
LevenbergMarquardt.h | 70 typedef Matrix< Scalar, Dynamic, 1 > FVectorType; 71 typedef Matrix< Scalar, Dynamic, Dynamic > JacobianType; 211 /* calculate the jacobian matrix. */ 386 // The purpose it to only use a nxn matrix, instead of mxn here, so 431 /* compute the qr factorization of the jacobian matrix */
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
ConversationItemView.java | 34 import android.graphics.Matrix; 222 private final Matrix mPhotoFlipMatrix = new Matrix(); 223 private final Matrix mCheckMatrix = new Matrix(); [all...] |
/frameworks/base/core/java/android/view/ |
View.java | 30 import android.graphics.Matrix; [all...] |
/external/opencv/cvaux/src/ |
cvscanlines.cpp | 47 icvGetNormalVector3( CvMatrix3 * Matrix, float *v ) 50 to all the row vectors of Matrix */ 57 if( Matrix == 0 || v == 0 ) 63 M[i * 3 + j] = (double) (Matrix->m[i][j]); 152 icvMakeScanlines( CvMatrix3 * matrix, 159 error = icvGetCoefficient( matrix, imgSize, scanlines_2, scanlines_1, numlines ); 170 matrix = matrix; 260 icvGetCoefficient( CvMatrix3 * matrix, 270 F = matrix; [all...] |
/packages/apps/Music/src/com/android/music/ |
MusicUtils.java | 38 import android.graphics.Matrix; 1298 Matrix matrix = new Matrix(); local [all...] |
/external/chromium_org/third_party/skia/src/xml/ |
SkJSDisplayable.cpp | 149 JS_INIT(SkDraw, Matrix)
|
/external/eigen/Eigen/src/Cholesky/ |
LDLT.h | 26 * \brief Robust Cholesky decomposition of a matrix with pivoting 28 * \param MatrixType the type of the matrix of which to compute the LDL^T Cholesky decomposition 33 * matrix \f$ A \f$ such that \f$ A = P^TLDL^*P \f$, where P is a permutation matrix, L 34 * is lower triangular with a unit diagonal and D is a diagonal matrix. 52 Options = MatrixType::Options & ~RowMajorBit, // these are the options for the TmpMatrixType, we need a ColMajor matrix here! 60 typedef Matrix<Scalar, RowsAtCompileTime, 1, Options, MaxRowsAtCompileTime, 1> TmpMatrixType; 89 * This calculates the decomposition for the input \a matrix. 92 LDLT(const MatrixType& matrix) 93 : m_matrix(matrix.rows(), matrix.cols()) [all...] |
LLT.h | 23 * \brief Standard Cholesky decomposition (LL^T) of a matrix and associated features 25 * \param MatrixType the type of the matrix of which we are computing the LL^T Cholesky decomposition 30 * matrix A such that A = LL^* = U^*U, where L is lower triangular. 89 LLT(const MatrixType& matrix) 90 : m_matrix(matrix.rows(), matrix.cols()), 93 compute(matrix); 96 /** \returns a view of the upper triangular matrix U */ 103 /** \returns a view of the lower triangular matrix L */ 112 * Since this LLT class assumes anyway that the matrix A is invertible, the solutio [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
SelfAdjointEigenSolver.h | 32 * \tparam _MatrixType the type of the matrix of which we are computing the 33 * eigendecomposition; this is expected to be an instantiation of the Matrix 36 * A matrix \f$ A \f$ is selfadjoint if it equals its adjoint. For real 37 * matrices, this means that the matrix is symmetric: it equals its 39 * selfadjoint matrix. These are the scalars \f$ \lambda \f$ and vectors 41 * selfadjoint matrix are always real. If \f$ D \f$ is a diagonal matrix with 42 * the eigenvalues on the diagonal, and \f$ V \f$ is a matrix with the 44 * matrices, the matrix \f$ V \f$ is always invertible). This is called the 47 * The algorithm exploits the fact that the matrix is selfadjoint, making i [all...] |
/external/eigen/unsupported/Eigen/src/MatrixFunctions/ |
MatrixLogarithm.h | 22 * \brief Helper class for computing matrix logarithm of atomic matrices. 25 * Here, an atomic matrix is a triangular matrix whose diagonal 39 // typedef Matrix<Scalar, MatrixType::RowsAtCompileTime, 1> VectorType; 44 /** \brief Compute matrix logarithm of atomic matrix 45 * \param[in] A argument of matrix logarithm, should be upper triangular and atomic 80 /** \brief Compute logarithm of triangular matrix with clustered eigenvalues. */ 107 /** \brief Compute logarithm of 2x2 triangular matrix. */ 223 /* \brief Compute Pade approximation to matrix logarithm * [all...] |
/external/eigen/unsupported/Eigen/src/Splines/ |
Spline.h | 360 Matrix<Scalar,Order,Order> ndu(p+1,p+1);
|
/external/libvpx/libvpx/examples/includes/geshi/geshi/ |
rails.php | 85 'Math', 'Matrix', 'Method', 'Module', 'Mutex', 'NameError',
|
/external/skia/src/xml/ |
SkJSDisplayable.cpp | 149 JS_INIT(SkDraw, Matrix)
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/ |
BitmapRegionTileSource.java | 27 import android.graphics.Matrix;
|
/frameworks/ex/chips/src/com/android/ex/chips/ |
RecipientEditTextView.java | 32 import android.graphics.Matrix; 647 Matrix matrix = new Matrix(); local 648 matrix.setRectToRect(src, dst, Matrix.ScaleToFit.FILL); 649 canvas.drawBitmap(photo, matrix, paint); [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
Workspace.java | 36 import android.graphics.Matrix; 148 private Matrix mTempInverseMatrix = new Matrix(); [all...] |
/external/eigen/unsupported/test/ |
NonLinearOptimization.cpp | 66 /* checking the jacobian matrix. */ 112 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType; 113 typedef Matrix<Scalar,ValuesAtCompileTime,1> ValueType; 114 typedef Matrix<Scalar,ValuesAtCompileTime,InputsAtCompileTime> JacobianType; [all...] |
/frameworks/base/media/java/android/media/videoeditor/ |
MediaArtistNativeHelper.java | 32 import android.graphics.Matrix; [all...] |
/frameworks/base/packages/Keyguard/src/com/android/keyguard/ |
PagedView.java | 30 import android.graphics.Matrix; 240 private Matrix mTmpInvMatrix = new Matrix(); [all...] |