Searched refs:RowMajor (Results 126 - 144 of 144) sorted by relevance

123456

/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h340 EIGEN_STATIC_ASSERT((_Options&(ColMajor|RowMajor))==Options,INVALID_MATRIX_TEMPLATE_PARAMETERS);
H A DSparseMatrixBase.h108 typedef SparseMatrix<Scalar, Flags&RowMajorBit ? RowMajor : ColMajor, Index> PlainObject;
H A DSparseMatrix.h34 * is ColMajor or RowMajor. The default is 0 which means column-major.
854 EIGEN_STATIC_ASSERT((Options&(ColMajor|RowMajor))==Options,INVALID_MATRIX_TEMPLATE_PARAMETERS);
943 SparseMatrix<Scalar,IsRowMajor?ColMajor:RowMajor,Index> trMat(mat.rows(),mat.cols());
H A DSparseBlock.h135 SparseMatrix<Scalar, IsRowMajor ? RowMajor : ColMajor, Index> tmp(other);
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineProduct.h253 struct skyline_product_selector<Lhs, Rhs, ResultType, RowMajor> {
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixVector.h294 struct general_matrix_vector_product<Index,LhsScalar,RowMajor,ConjugateLhs,RhsScalar,ConjugateRhs,Version>
323 EIGEN_DONT_INLINE void general_matrix_vector_product<Index,LhsScalar,RowMajor,ConjugateLhs,RhsScalar,ConjugateRhs,Version>::run(
H A DGeneralBlockPanelKernel.h1134 eigen_assert( (StorageOrder==RowMajor) || ((Pack1%PacketSize)==0 && Pack1<=4*PacketSize) );
1262 struct gemm_pack_rhs<Scalar, Index, nr, RowMajor, Conjugate, PanelMode>
1269 EIGEN_DONT_INLINE void gemm_pack_rhs<Scalar, Index, nr, RowMajor, Conjugate, PanelMode>
/external/eigen/Eigen/src/Eigenvalues/
H A DRealQZ.h72 typedef Matrix<ComplexScalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> EigenvalueType;
73 typedef Matrix<Scalar, ColsAtCompileTime, 1, Options & ~RowMajor, MaxColsAtCompileTime, 1> ColumnVectorType;
H A DSelfAdjointEigenSolver.h445 internal::tridiagonal_qr_step<MatrixType::Flags&RowMajorBit ? RowMajor : ColMajor>(diag.data(), m_subdiag.data(), start, end, computeEigenvectors ? m_eivec.data() : (Scalar*)0, n);
801 // FIXME if StorageOrder == RowMajor this operation is not very efficient
/external/eigen/Eigen/src/Geometry/
H A DTransform.h83 * \tparam _Options has the same meaning as in class Matrix. It allows to specify DontAlign and/or RowMajor.
199 typedef Block<MatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> LinearPart;
201 typedef const Block<ConstMatrixType,Dim,Dim,int(Mode)==(AffineCompact) && (Options&RowMajor)==0> ConstLinearPart;
633 EIGEN_STATIC_ASSERT((Options & (DontAlign|RowMajor)) == Options, INVALID_MATRIX_TEMPLATE_PARAMETERS)
/external/ceres-solver/internal/ceres/
H A Dcovariance_impl.cc671 Eigen::MappedSparseMatrix<double, Eigen::RowMajor>(
/external/eigen/Eigen/src/Core/
H A DMatrixBase.h112 AutoAlign | (internal::traits<Derived>::Flags&RowMajorBit ? RowMajor : ColMajor),
/external/eigen/Eigen/src/PardisoSupport/
H A DPardisoSupport.h107 typedef SparseMatrix<Scalar,RowMajor,Index> SparseMatrixType;
/external/eigen/test/
H A Dblock.cpp248 CALL_SUBTEST_7( data_and_stride(Matrix<int,Dynamic,Dynamic,RowMajor>(internal::random(5,50), internal::random(5,50))) );
/external/eigen/Eigen/src/SVD/
H A DJacobiSVD.h75 typedef Matrix<Scalar, 1, RowsAtCompileTime, RowMajor, 1, MaxRowsAtCompileTime> WorkspaceType;
/external/eigen/Eigen/src/SparseQR/
H A DSparseQR.h240 SparseMatrix<Scalar, RowMajor, Index> mQrm(this->m_Q);
/external/eigen/unsupported/Eigen/src/SVD/
H A DJacobiSVD.h75 typedef Matrix<Scalar, 1, RowsAtCompileTime, RowMajor, 1, MaxRowsAtCompileTime> WorkspaceType;
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp4081 ubo_var->RowMajor = block_row_major;
4083 ubo_var->RowMajor = true;
4085 ubo_var->RowMajor = false;
/external/mesa3d/src/mesa/main/
H A Dmtypes.h2254 GLboolean RowMajor; member in struct:gl_uniform_buffer_variable

Completed in 536 milliseconds

123456