/external/eigen/Eigen/src/SparseCore/ |
SparseSelfAdjointView.h | 60 inline SparseSelfAdjointView(const MatrixType& matrix) : m_matrix(matrix) 65 inline Index rows() const { return m_matrix.rows(); } 66 inline Index cols() const { return m_matrix.cols(); } 69 const _MatrixTypeNested& matrix() const { return m_matrix; } 70 _MatrixTypeNested& matrix() { return m_matrix.const_cast_derived(); } 77 return SparseSelfAdjointTimeDenseProduct<MatrixType,OtherDerived,UpLo>(m_matrix, rhs.derived()); 85 return DenseTimeSparseSelfAdjointProduct<OtherDerived,_MatrixTypeNested,UpLo>(lhs.derived(), rhs.m_matrix); 102 internal::permute_symm_to_fullsymm<UpLo>(m_matrix, _dest); 109 internal::permute_symm_to_fullsymm<UpLo>(m_matrix, tmp); 116 return SparseSymmetricPermutationProduct<_MatrixTypeNested,UpLo>(m_matrix, perm) 146 typename MatrixType::Nested m_matrix; member in class:Eigen::SparseSelfAdjointView 473 MatrixTypeNested m_matrix; member in class:Eigen::SparseSymmetricPermutationProduct [all...] |
SparseTriangularView.h | 40 inline Index rows() const { return m_matrix.rows(); } 41 inline Index cols() const { return m_matrix.cols(); } 47 inline SparseTriangularView(const MatrixType& matrix) : m_matrix(matrix) {} 50 inline const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; } 60 MatrixTypeNested m_matrix; member in class:Eigen::SparseTriangularView
|
TriangularSolver.h | 168 eigen_assert(m_matrix.cols() == m_matrix.rows() && m_matrix.cols() == other.rows()); 177 internal::sparse_solve_triangular_selector<ExpressionType, typename internal::remove_reference<OtherCopy>::type, Mode>::run(m_matrix, otherCopy); 293 eigen_assert(m_matrix.cols() == m_matrix.rows() && m_matrix.cols() == other.rows()); 302 internal::sparse_solve_triangular_sparse_selector<ExpressionType, OtherDerived, Mode>::run(m_matrix, other.derived());
|
/external/eigen/Eigen/src/Core/ |
DiagonalProduct.h | 52 : m_matrix(matrix), m_diagonal(diagonal) 57 inline Index rows() const { return m_matrix.rows(); } 58 inline Index cols() const { return m_matrix.cols(); } 62 return m_diagonal.diagonal().coeff(ProductOrder == OnTheLeft ? row : col) * m_matrix.coeff(row, col); 82 return internal::pmul(m_matrix.template packet<LoadMode>(row, col), 93 return internal::pmul(m_matrix.template packet<LoadMode>(row, col), 97 typename MatrixType::Nested m_matrix; member in class:Eigen::DiagonalProduct
|
VectorwiseOp.h | 78 : m_matrix(mat), m_functor(func) {} 80 Index rows() const { return (Direction==Vertical ? 1 : m_matrix.rows()); } 81 Index cols() const { return (Direction==Horizontal ? 1 : m_matrix.cols()); } 86 return m_functor(m_matrix.col(j)); 88 return m_functor(m_matrix.row(i)); 94 return m_functor(m_matrix.col(index)); 96 return m_functor(m_matrix.row(index)); 100 MatrixTypeNested m_matrix; member in class:Eigen::PartialReduxExpr 207 return SubVector(m_matrix.derived(),i); 213 { return Direction==Vertical?m_matrix.cols():m_matrix.rows(); 543 ExpressionTypeNested m_matrix; member in class:Eigen::VectorwiseOp [all...] |
Transpose.h | 65 inline Transpose(MatrixType& matrix) : m_matrix(matrix) {} 69 inline Index rows() const { return m_matrix.cols(); } 70 inline Index cols() const { return m_matrix.rows(); } 74 nestedExpression() const { return m_matrix; } 78 nestedExpression() { return m_matrix.const_cast_derived(); } 81 typename MatrixType::Nested m_matrix; member in class:Eigen::Transpose
|
Transpositions.h | 368 : m_transpositions(tr), m_matrix(matrix) 371 inline int rows() const { return m_matrix.rows(); } 372 inline int cols() const { return m_matrix.cols(); } 379 if(!(is_same<MatrixTypeNestedCleaned,Dest>::value && extract_data(dst) == extract_data(m_matrix))) 380 dst = m_matrix; 394 typename MatrixType::Nested m_matrix; member in struct:Eigen::internal::transposition_matrix_product_retval
|
IO.h | 96 : m_matrix(matrix), m_format(format) 101 return internal::print_matrix(s, wf.m_matrix.eval(), wf.m_format); 105 const typename ExpressionType::Nested m_matrix; member in class:Eigen::WithFormat
|
/external/eigen/unsupported/Eigen/src/IterativeSolvers/ |
Scaling.h | 81 m_matrix = mat; 91 for (int k=0; k<m_matrix.outerSize(); ++k) 93 for (typename MatrixType::InnerIterator it(m_matrix, k); it; ++it) 115 for (int k=0; k<m_matrix.outerSize(); ++k) 117 for (typename MatrixType::InnerIterator it(m_matrix, k); it; ++it) 144 mat = m_matrix; 176 MatrixType m_matrix; member in class:Scaling
|
/external/eigen/Eigen/src/Cholesky/ |
LLT.h | 78 LLT() : m_matrix(), m_isInitialized(false) {} 86 LLT(Index size) : m_matrix(size, size), 90 : m_matrix(matrix.rows(), matrix.cols()), 100 return Traits::getU(m_matrix); 107 return Traits::getL(m_matrix); 125 eigen_assert(m_matrix.rows()==b.rows() 153 return m_matrix; 170 inline Index rows() const { return m_matrix.rows(); } 171 inline Index cols() const { return m_matrix.cols(); } 181 MatrixType m_matrix; member in class:Eigen::LLT [all...] |
LDLT.h | 72 LDLT() : m_matrix(), m_transpositions(), m_isInitialized(false) {} 81 : m_matrix(size, size), 93 : m_matrix(matrix.rows(), matrix.cols()), 113 return Traits::getU(m_matrix); 120 return Traits::getL(m_matrix); 135 return m_matrix.diagonal(); 179 eigen_assert(m_matrix.rows()==b.rows() 208 return m_matrix; 213 inline Index rows() const { return m_matrix.rows(); } 214 inline Index cols() const { return m_matrix.cols(); 235 MatrixType m_matrix; member in class:Eigen::LDLT [all...] |
/external/eigen/Eigen/src/Geometry/ |
Transform.h | 224 MatrixType m_matrix; member in class:Eigen::Transform 240 m_matrix = other.m_matrix; 261 { m_matrix = other.m_matrix; return *this; } 292 m_matrix = other.matrix(); 318 m_matrix.template block<Dim,Dim+1>(0,0) = other.matrix().template block<Dim,Dim+1>(0,0); 359 /** shortcut for m_matrix(row,col); 361 inline Scalar operator() (Index row, Index col) const { return m_matrix(row,col); } 362 /** shortcut for m_matrix(row,col) [all...] |
Homogeneous.h | 72 : m_matrix(matrix) 75 inline Index rows() const { return m_matrix.rows() + (int(Direction)==Vertical ? 1 : 0); } 76 inline Index cols() const { return m_matrix.cols() + (int(Direction)==Horizontal ? 1 : 0); } 80 if( (int(Direction)==Vertical && row==m_matrix.rows()) 81 || (int(Direction)==Horizontal && col==m_matrix.cols())) 83 return m_matrix.coeff(row, col); 91 return internal::homogeneous_right_product_impl<Homogeneous,Rhs>(m_matrix,rhs.derived()); 99 return internal::homogeneous_left_product_impl<Homogeneous,Lhs>(lhs.derived(),rhs.m_matrix); 107 return internal::homogeneous_left_product_impl<Homogeneous,Transform<Scalar,Dim,Mode,Options> >(lhs,rhs.m_matrix); 111 typename MatrixType::Nested m_matrix; member in class:Eigen::Homogeneous [all...] |
/external/eigen/Eigen/src/SparseCholesky/ |
SimplicialCholesky.h | 107 inline Index cols() const { return m_matrix.cols(); } 108 inline Index rows() const { return m_matrix.rows(); } 181 s << " L: " << ((total+=(m_matrix.cols()+1) * sizeof(int) + m_matrix.nonZeros()*(sizeof(int)+sizeof(Scalar))) >> 20) << "Mb" << "\n"; 195 eigen_assert(m_matrix.rows()==b.rows()); 205 if(m_matrix.nonZeros()>0) // otherwise L==I 211 if (m_matrix.nonZeros()>0) // otherwise U==I 223 eigen_assert(m_matrix.rows()==b.rows()); 293 CholMatrixType m_matrix; member in class:Eigen::SimplicialCholeskyBase 386 return Traits::getL(Base::m_matrix); [all...] |
/external/eigen/Eigen/src/PardisoSupport/ |
PardisoSupport.h | 293 mutable SparseMatrixType m_matrix; 319 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(), 342 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr(), 362 m_matrix.valuePtr(), m_matrix.outerIndexPtr(), m_matrix.innerIndexPtr() [all...] |
/external/eigen/Eigen/src/Eigenvalues/ |
Tridiagonalization.h | 114 : m_matrix(size,size), 130 : m_matrix(matrix), 134 internal::tridiagonalization_inplace(m_matrix, m_hCoeffs); 157 m_matrix = matrix; 159 internal::tridiagonalization_inplace(m_matrix, m_hCoeffs); 220 return m_matrix; 241 return HouseholderSequenceType(m_matrix, m_hCoeffs.conjugate()) 242 .setLength(m_matrix.rows() - 1) 266 return MatrixTReturnType(m_matrix.real()); 298 MatrixType m_matrix; member in class:Eigen::Tridiagonalization 550 typename MatrixType::Nested m_matrix; member in struct:Eigen::internal::TridiagonalizationMatrixTReturnType [all...] |
HessenbergDecomposition.h | 101 : m_matrix(size,size), 119 : m_matrix(matrix), 129 _compute(m_matrix, m_hCoeffs, m_temp); 152 m_matrix = matrix; 159 _compute(m_matrix, m_hCoeffs, m_temp); 215 return m_matrix; 235 return HouseholderSequenceType(m_matrix, m_hCoeffs.conjugate()) 236 .setLength(m_matrix.rows() - 1) 273 MatrixType m_matrix; member in class:Eigen::HessenbergDecomposition
|
/external/eigen/Eigen/src/Eigen2Support/ |
CwiseOperators.h | 75 return m_matrix.const_cast_derived() = *this * other; 83 return m_matrix.const_cast_derived() = *this / other; 271 return typename Cwise<ExpressionType>::ScalarAddReturnType(m_matrix, internal::scalar_add_op<Scalar>(scalar)); 278 return m_matrix.const_cast_derived() = *this + scalar; 293 return m_matrix.const_cast_derived() = *this - scalar;
|
Cwise.h | 59 inline Cwise(const ExpressionType& matrix) : m_matrix(matrix) {} 62 inline const ExpressionType& _expression() const { return m_matrix; } 160 ExpressionTypeNested m_matrix; member in class:Eigen::Cwise
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineMatrix.h | 739 : m_matrix(mat), m_outer(outer), 756 return m_matrix.m_data.upper(m_id); 760 return const_cast<Scalar*> (&(m_matrix.m_data.upper(m_id))); 764 return const_cast<Scalar&> (m_matrix.m_data.upper(m_id)); 768 return IsRowMajor ? m_outer - m_matrix.m_data.upperProfile(m_outer) + (m_id - m_start) : 781 return m_matrix.m_data.upperProfile(m_outer); 789 const SkylineMatrix& m_matrix; 801 : m_matrix(mat), 819 return m_matrix.m_data.lower(m_id); 823 return const_cast<Scalar*> (&(m_matrix.m_data.lower(m_id))) [all...] |
/external/eigen/Eigen/src/LU/ |
Inverse.h | 276 MatrixTypeNested m_matrix; member in struct:Eigen::internal::inverse_impl 279 : m_matrix(matrix) 282 inline Index rows() const { return m_matrix.rows(); } 283 inline Index cols() const { return m_matrix.cols(); } 289 eigen_assert(( (Size<=1) || (Size>4) || (extract_data(m_matrix)!=extract_data(dst))) 292 compute_inverse<MatrixTypeNestedCleaned, Dest>::run(m_matrix, dst);
|
/external/eigen/Eigen/src/SuperLUSupport/ |
SuperLUSupport.h | 315 inline Index rows() const { return m_matrix.rows(); } 316 inline Index cols() const { return m_matrix.cols(); } 390 m_matrix = a; 392 m_sluA = internal::asSluMatrix(m_matrix); 444 mutable LUMatrixType m_matrix; // copy of the factorized matrix member in class:Eigen::SuperLUBase 562 using Base::m_matrix; 643 const int size = m_matrix.rows(); 701 const int size = m_matrix.rows(); 870 using Base::m_matrix; 954 const int size = m_matrix.rows() [all...] |
/external/eigen/Eigen/src/Core/products/ |
GeneralMatrixMatrixTriangular.h | 205 ::run(m_matrix.cols(), actualLhs.cols(), 207 const_cast<Scalar*>(m_matrix.data()), m_matrix.outerStride(), actualAlpha);
|
/external/chromium_org/third_party/mesa/src/src/mesa/main/ |
clip.c | 32 #include "math/m_matrix.h"
|
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_xform.c | 40 #include "m_matrix.h"
|