/external/eigen/debug/msvc/ |
eigen_autoexp_part.dat | 9 ; * - Eigen::Matrix<*,4,1,*,*,*> and Eigen::Matrix<*,1,4,*,*,*>
10 ; * - Eigen::Matrix<*,3,1,*,*,*> and Eigen::Matrix<*,1,3,*,*,*>
11 ; * - Eigen::Matrix<*,2,1,*,*,*> and Eigen::Matrix<*,1,2,*,*,*>
12 ; * - Eigen::Matrix<*,-1,-1,*,*,*>
13 ; * - Eigen::Matrix<*,+,-1,*,*,*>
14 ; * - Eigen::Matrix<*,-1,+,*,*,*>
15 ; * - Eigen::Matrix<*,+,+,*,*,*> [all...] |
/external/eigen/doc/ |
TutorialBlockOperations.dox | 6 A block is a rectangular part of a matrix or array. Blocks expressions can be used both 23 matrix.block(i,j,p,q);\endcode </td> 25 matrix.block<p,q>(i,j);\endcode </td> 37 matrix. 64 matters is that you give Eigen as much information as possible at compile time. For example, if your block is a single whole column in a matrix, 80 matrix.row(i);\endcode </td> 85 matrix.col(j);\endcode </td> 106 matrix or array. For instance, \link DenseBase::topLeftCorner() .topLeftCorner() \endlink can be used to refer 107 to a block in the top-left corner of a matrix. 117 matrix.topLeftCorner(p,q);\endcode </td [all...] |
/external/eigen/test/ |
nomalloc.cpp | 54 VERIFY_IS_APPROX(m1.cwiseProduct(m1.block(0,0,rows,cols)), (m1.array()*m1.array()).matrix()); 93 // The following fancy matrix-matrix products are not safe yet regarding static allocation 107 typedef Eigen::Matrix<Scalar, 110 maxSize, maxSize> Matrix; 112 typedef Eigen::Matrix<Scalar, 117 typedef Eigen::Matrix<std::complex<Scalar>, 122 const Matrix A(Matrix::Random(size, size)), B(Matrix::Random(size, size)) [all...] |
/cts/tests/tests/view/src/android/view/animation/cts/ |
TranslateAnimationTest.java | 21 import android.graphics.Matrix; 104 assertEquals(FROM_X_DETLTA, values[Matrix.MTRANS_X], POSITION_DELTA); 105 assertEquals(FROM_Y_DELTA, values[Matrix.MTRANS_Y], POSITION_DELTA); 110 assertEquals((TO_X_DELTA + FROM_X_DETLTA) / 2, values[Matrix.MTRANS_X], POSITION_DELTA); 111 assertEquals((TO_Y_DELTA + FROM_Y_DELTA) / 2, values[Matrix.MTRANS_Y], POSITION_DELTA); 116 assertEquals(TO_X_DELTA, values[Matrix.MTRANS_X], POSITION_DELTA); 117 assertEquals(TO_Y_DELTA, values[Matrix.MTRANS_Y], POSITION_DELTA); 124 assertEquals(FROM_X_DETLTA, values[Matrix.MTRANS_X], POSITION_DELTA); 125 assertEquals(FROM_Y_DELTA, values[Matrix.MTRANS_Y], POSITION_DELTA); 132 values[Matrix.MTRANS_X], POSITION_DELTA) [all...] |
/frameworks/base/rs/java/android/renderscript/ |
Matrix2f.java | 27 * Creates a new identity 2x2 matrix 35 * Creates a new matrix and sets its values from the given 38 * @param dataArray values to set the matrix to, must be 4 47 * Return a reference to the internal array representing matrix 48 * values. Modifying this array will also change the matrix 50 * @return internal array representing the matrix 79 * Sets the matrix values to identity 90 * Sets the values of the matrix to those of the parameter 92 * @param src matrix to load the values from 99 * Sets current values to be a rotation matrix of given angl [all...] |
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
Matrix2f.java | 30 * Creates a new identity 2x2 matrix 38 * Creates a new matrix and sets its values from the given 41 * @param dataArray values to set the matrix to, must be 4 50 * Return a reference to the internal array representing matrix 51 * values. Modifying this array will also change the matrix 53 * @return internal array representing the matrix 82 * Sets the matrix values to identity 93 * Sets the values of the matrix to those of the parameter 95 * @param src matrix to load the values from 102 * Sets current values to be a rotation matrix of given angl [all...] |
/external/eigen/blas/ |
level3_impl.h | 55 if(beta==Scalar(0)) matrix(c, *m, *n, *ldc).setZero(); 56 else matrix(c, *m, *n, *ldc) *= beta; 144 matrix(b,*m,*n,*ldb) *= alpha; 220 Matrix<Scalar,Dynamic,Dynamic,ColMajor> tmp = matrix(b,*m,*n,*ldb); 221 matrix(b,*m,*n,*ldb).setZero(); 260 if(beta==Scalar(0)) matrix(c, *m, *n, *ldc).setZero(); 261 else matrix(c, *m, *n, *ldc) *= beta; 270 // FIXME add support for symmetric complex matrix 272 Matrix<Scalar,Dynamic,Dynamic,ColMajor> matA(size,size) [all...] |
/development/perftests/panorama/feature_mos/src/mosaic/ |
MatrixUtils.h | 25 /* Simple class for 3x3 matrix, mainly used to convert from 9x1 41 * identity: Specifies wether to initialize matrix to 49 * Initialize to identity matrix 61 * Conver ta 9x1 matrix to a 3x3 matrix 78 /* Matrix data */ 83 /* Simple class for 9x1 matrix, mainly used to convert from 3x3 99 * identity: Specifies wether to initialize matrix to 107 * Initialize to identity matrix 119 * Conver ta 3x3 matrix to a 9x1 matri [all...] |
/external/ceres-solver/internal/ceres/ |
compressed_row_sparse_matrix_test.cc | 209 Matrix tsm_dense; 210 Matrix crsm_dense; 248 scoped_ptr<CompressedRowSparseMatrix> matrix( 252 EXPECT_EQ(matrix->num_rows(), 5); 253 EXPECT_EQ(matrix->num_cols(), 5); 254 EXPECT_EQ(matrix->num_nonzeros(), 9); 255 EXPECT_EQ(blocks, matrix->row_blocks()); 256 EXPECT_EQ(blocks, matrix->col_blocks()); 263 matrix->RightMultiply(x.data(), y.data()); 269 matrix->LeftMultiply(x.data(), y.data()) 470 CompressedRowSparseMatrix* matrix = new CompressedRowSparseMatrix(tsm); local [all...] |
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/ |
RenderData.java | 7 import android.graphics.Matrix; 16 public Matrix transform = new Matrix();
|
/external/chromium_org/third_party/skia/include/core/ |
SkRasterizer.h | 25 /** Turn the path into a mask, respecting the specified local->device matrix. 27 bool rasterize(const SkPath& path, const SkMatrix& matrix, 37 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
|
/external/eigen/bench/ |
basicbenchmark.cpp | 10 // this is the list of matrix type and size we want to bench: 11 // ((suffix) (matrix size) (number of iterations)) 25 BOOST_PP_CAT(Matrix, BOOST_PP_SEQ_HEAD(EL)) (\
|
/external/eigen/doc/snippets/ |
SelfAdjointEigenSolver_SelfAdjointEigenSolver_MatrixType2.cpp | 3 cout << "Here is a random symmetric matrix, A:" << endl << A << endl; 6 cout << "and a random postive-definite matrix, B:" << endl << B << endl << endl; 10 cout << "The matrix of eigenvectors, V, is:" << endl << es.eigenvectors() << endl << endl;
|
/external/eigen/unsupported/test/ |
matrix_square_root.cpp | 27 CALL_SUBTEST_4(testMatrixSqrt(Matrix<double,Dynamic,Dynamic,RowMajor>(9, 9))); 28 CALL_SUBTEST_5(testMatrixSqrt(Matrix<float,1,1>())); 29 CALL_SUBTEST_5(testMatrixSqrt(Matrix<std::complex<float>,1,1>()));
|
/external/skia/include/core/ |
SkRasterizer.h | 25 /** Turn the path into a mask, respecting the specified local->device matrix. 27 bool rasterize(const SkPath& path, const SkMatrix& matrix, 37 virtual bool onRasterize(const SkPath& path, const SkMatrix& matrix,
|
/packages/apps/Camera/jni/feature_mos/src/mosaic/ |
MatrixUtils.h | 25 /* Simple class for 3x3 matrix, mainly used to convert from 9x1 41 * identity: Specifies wether to initialize matrix to 49 * Initialize to identity matrix 61 * Conver ta 9x1 matrix to a 3x3 matrix 78 /* Matrix data */ 83 /* Simple class for 9x1 matrix, mainly used to convert from 3x3 99 * identity: Specifies wether to initialize matrix to 107 * Initialize to identity matrix 119 * Conver ta 3x3 matrix to a 9x1 matri [all...] |
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/ |
MatrixUtils.h | 25 /* Simple class for 3x3 matrix, mainly used to convert from 9x1 41 * identity: Specifies wether to initialize matrix to 49 * Initialize to identity matrix 61 * Conver ta 9x1 matrix to a 3x3 matrix 78 /* Matrix data */ 83 /* Simple class for 9x1 matrix, mainly used to convert from 3x3 99 * identity: Specifies wether to initialize matrix to 107 * Initialize to identity matrix 119 * Conver ta 3x3 matrix to a 9x1 matri [all...] |
/external/eigen/unsupported/Eigen/src/SVD/ |
JacobiSVD.h | 24 *** Their role is to reduce the problem of computing the SVD to the case of a square matrix. 75 typedef Matrix<Scalar, 1, RowsAtCompileTime, RowMajor, 1, MaxRowsAtCompileTime> WorkspaceType; 87 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix) 89 if(matrix.rows() > matrix.cols()) 91 m_qr.compute(matrix); 92 svd.m_workMatrix = m_qr.matrixQR().block(0,0,matrix.cols(),matrix.cols()).template triangularView<Upper>(); 119 typedef Matrix<Scalar, ColsAtCompileTime, RowsAtCompileTime, Options, MaxColsAtCompileTime, MaxRowsAtCompileTime> 133 bool run(JacobiSVD<MatrixType, FullPivHouseholderQRPreconditioner>& svd, const MatrixType& matrix) [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
Tridiagonalization.h | 34 * \brief Tridiagonal decomposition of a selfadjoint matrix 36 * \tparam _MatrixType the type of the matrix of which we are computing the 38 * Matrix class template. 40 * This class performs a tridiagonal decomposition of a selfadjoint matrix \f$ A \f$ such that: 41 * \f$ A = Q T Q^* \f$ where \f$ Q \f$ is unitary and \f$ T \f$ a real symmetric tridiagonal matrix. 43 * A tridiagonal matrix is a matrix which has nonzero elements only on the 45 * decomposition of a selfadjoint matrix is in fact a tridiagonal 47 * eigenvalues and eigenvectors of a selfadjoint matrix. 50 * given matrix. Alternatively, you can use the Tridiagonalization(const MatrixType& [all...] |
/external/eigen/Eigen/src/PaStiXSupport/ |
PaStiXSupport.h | 19 * The matrix can be either real or complex, symmetric or not. 87 // Convert the matrix to Fortran-style Numbering 128 typedef Matrix<Scalar,Dynamic,1> Vector; 153 && "PastixBase::solve(): invalid number of rows of the right hand side matrix b"); 213 * \c InvalidInput if the input matrix is invalid 233 && "PastixBase::solve(): invalid number of rows of the right hand side matrix b"); 239 // Initialize the Pastix data structure, check the matrix 267 mutable Matrix<int,IPARM_SIZE,1> m_iparm; // integer vector for the input parameters 268 mutable Matrix<double,DPARM_SIZE,1> m_dparm; // Scalar vector for the input parameters 269 mutable Matrix<Index,Dynamic,1> m_perm; // Permutation vecto [all...] |
/cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/ |
BlurMeshNode.cpp | 23 void BlurMeshNode::before(Program& program, Matrix& model, Matrix& view, Matrix& projection) { 55 void BlurMeshNode::after(Program& program, Matrix& model, Matrix& view, Matrix& projection) {
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/ |
MatrixGrabber.java | 28 * Record the current modelView and projection matrix state. 29 * Has the side effect of setting the current matrix state to GL_MODELVIEW 38 * Record the current modelView matrix state. Has the side effect of 39 * setting the current matrix state to GL_MODELVIEW 47 * Record the current projection matrix state. Has the side effect of 48 * setting the current matrix state to GL_PROJECTION
|
/external/chromium_org/chrome/browser/ui/cocoa/omnibox/ |
omnibox_popup_matrix_unittest.mm | 12 NSEvent* MouseEventInRow(NSMatrix* matrix, NSEventType type, NSInteger row) { 13 NSRect cell_rect = [matrix cellFrameAtRow:row column:0]; 15 NSPoint point_in_window = [matrix convertPoint:point_in_view toView:nil]; 35 virtual void OnMatrixRowSelected(OmniboxPopupMatrix* matrix, 41 virtual void OnMatrixRowClicked(OmniboxPopupMatrix* matrix, 46 virtual void OnMatrixRowMiddleClicked(OmniboxPopupMatrix* matrix,
|
/external/chromium_org/third_party/skia/src/core/ |
SkMatrixUtils.h | 20 * Given a matrix and width/height, return true if the computed dst-rect would 38 static inline bool SkTreatAsSpriteFilter(const SkMatrix& matrix, 40 return SkTreatAsSprite(matrix, width, height, kSkSubPixelBitsForBilerp); 43 /** Decomposes the upper-left 2x2 of the matrix into a rotation (represented by 47 Returns true if successful. Returns false if the matrix is degenerate. 49 bool SkDecomposeUpper2x2(const SkMatrix& matrix,
|
/external/chromium_org/third_party/skia/src/effects/gradients/ |
SkSweepGradient.cpp | 23 SkMatrix* matrix, SkShader::TileMode* xy) const { 27 if (matrix) { 28 *matrix = fPtsToUnit; 87 const SkMatrix& matrix = fDstToIndex; local 93 proc(matrix, SkIntToScalar(x) + SK_ScalarHalf, 100 (void)matrix.fixedStepInX(SkIntToScalar(y) + SK_ScalarHalf, 106 dx = matrix.getScaleX(); 107 dy = matrix.getSkewY(); 118 proc(matrix, SkIntToScalar(x) + SK_ScalarHalf, 129 const SkMatrix& matrix = fDstToIndex local 290 SkMatrix matrix; local [all...] |