/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...] |
/external/eigen/Eigen/src/Geometry/ |
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...] |
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...] |
/external/eigen/Eigen/src/SparseCore/ |
MappedSparseMatrix.h | 120 : m_matrix(mat), 129 inline Scalar value() const { return m_matrix.valuePtr()[m_id]; } 130 inline Scalar& valueRef() { return const_cast<Scalar&>(m_matrix.valuePtr()[m_id]); } 132 inline Index index() const { return m_matrix.innerIndexPtr()[m_id]; } 139 const MappedSparseMatrix& m_matrix; member in class:Eigen::MappedSparseMatrix::InnerIterator 151 : m_matrix(mat), 160 inline Scalar value() const { return m_matrix.valuePtr()[m_id-1]; } 161 inline Scalar& valueRef() { return const_cast<Scalar&>(m_matrix.valuePtr()[m_id-1]); } 163 inline Index index() const { return m_matrix.innerIndexPtr()[m_id-1]; } 170 const MappedSparseMatrix& m_matrix; member in class:Eigen::MappedSparseMatrix::ReverseInnerIterator [all...] |
SparseBlock.h | 48 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 59 : MatrixType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 68 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize) 74 : m_matrix(matrix), m_outerStart(outer), m_outerSize(Size) 92 EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ? m_outerSize.value() : m_matrix.rows(); } 93 EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() : m_outerSize.value(); } 97 const typename MatrixType::Nested m_matrix; member in class:Eigen::SparseInnerVectorSet 121 : MatrixType::InnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 132 : MatrixType::ReverseInnerIterator(xpr.m_matrix, xpr.m_outerStart + outer), m_outer(outer) 141 : m_matrix(matrix), m_outerStart(outerStart), m_outerSize(outerSize 279 typename MatrixType::Nested m_matrix; member in class:Eigen::SparseInnerVectorSet [all...] |
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...] |
/external/webkit/Source/WebCore/css/ |
WebKitCSSMatrix.h | 49 double a() const { return m_matrix.a(); } 50 double b() const { return m_matrix.b(); } 51 double c() const { return m_matrix.c(); } 52 double d() const { return m_matrix.d(); } 53 double e() const { return m_matrix.e(); } 54 double f() const { return m_matrix.f(); } 56 void setA(double f) { m_matrix.setA(f); } 57 void setB(double f) { m_matrix.setB(f); } 58 void setC(double f) { m_matrix.setC(f); } 59 void setD(double f) { m_matrix.setD(f); 154 TransformationMatrix m_matrix; member in class:WebCore::WebKitCSSMatrix [all...] |
/external/webkit/Source/WebCore/platform/graphics/android/layers/ |
Layer.h | 54 const SkMatrix& getMatrix() const { return m_matrix; } 66 void setMatrix(const SkMatrix& matrix) { m_matrix = matrix; } 177 SkMatrix m_matrix; member in class:Layer
|
/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...] |
/external/eigen/Eigen/src/Core/ |
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...] |
TriangularMatrix.h | 192 inline TriangularView(const MatrixType& matrix) : m_matrix(matrix) 195 inline Index rows() const { return m_matrix.rows(); } 196 inline Index cols() const { return m_matrix.cols(); } 197 inline Index outerStride() const { return m_matrix.outerStride(); } 198 inline Index innerStride() const { return m_matrix.innerStride(); } 201 template<typename Other> TriangularView& operator+=(const DenseBase<Other>& other) { return *this = m_matrix + other.derived(); } 203 template<typename Other> TriangularView& operator-=(const DenseBase<Other>& other) { return *this = m_matrix - other.derived(); } 205 TriangularView& operator*=(const typename internal::traits<MatrixType>::Scalar& other) { return *this = m_matrix * other; } 207 TriangularView& operator/=(const typename internal::traits<MatrixType>::Scalar& other) { return *this = m_matrix / other; } 225 return m_matrix.coeff(row, col) 423 MatrixTypeNested m_matrix; member in class:Eigen::TriangularView [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/webkit/Source/WebCore/platform/graphics/transforms/ |
TransformationMatrix.h | 85 m_matrix[0][0] = a; m_matrix[0][1] = b; m_matrix[0][2] = 0; m_matrix[0][3] = 0; 86 m_matrix[1][0] = c; m_matrix[1][1] = d; m_matrix[1][2] = 0; m_matrix[1][3] = 0; 87 m_matrix[2][0] = 0; m_matrix[2][1] = 0; m_matrix[2][2] = 1; m_matrix[2][3] = 0; 355 Matrix4 m_matrix; member in class:WebCore::TransformationMatrix [all...] |
/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/webkit/Source/WebCore/platform/graphics/android/context/ |
GraphicsOperation.h | 184 ConcatCTM(const AffineTransform& affine) : m_matrix(affine) {} 186 context->concatCTM(m_matrix); 191 AffineTransform m_matrix; member in class:WebCore::GraphicsOperation::ConcatCTM 313 : m_bitmap(bitmap), m_matrix(matrix), m_operator(op), m_destRect(destRect) {} 315 context->drawBitmapPattern(m_bitmap, m_matrix, m_operator, m_destRect); 323 SkMatrix m_matrix; member in class:WebCore::GraphicsOperation::DrawBitmapPattern
|