HomeSort by relevance Sort by last modified time
    Searched refs:MatrixTypeNestedCleaned (Results 1 - 7 of 7) sorted by null

  /external/eigen/Eigen/src/SparseCore/
SparsePermutation.h 22 typedef typename remove_all<typename MatrixType::Nested>::type MatrixTypeNestedCleaned;
23 typedef typename MatrixTypeNestedCleaned::Scalar Scalar;
24 typedef typename MatrixTypeNestedCleaned::Index Index;
26 SrcStorageOrder = MatrixTypeNestedCleaned::Flags&RowMajorBit ? RowMajor : ColMajor,
39 typedef typename remove_all<typename MatrixType::Nested>::type MatrixTypeNestedCleaned;
40 typedef typename MatrixTypeNestedCleaned::Scalar Scalar;
41 typedef typename MatrixTypeNestedCleaned::Index Index;
44 SrcStorageOrder = MatrixTypeNestedCleaned::Flags&RowMajorBit ? RowMajor : ColMajor,
72 for(typename MatrixTypeNestedCleaned::InnerIterator it(m_matrix,jsrc); it; ++it)
89 for(typename MatrixTypeNestedCleaned::InnerIterator it(m_matrix,j); it; ++it
    [all...]
SparseTriangularView.h 47 typedef typename internal::remove_all<MatrixTypeNested>::type MatrixTypeNestedCleaned;
52 inline const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; }
66 class SparseTriangularView<MatrixType,Mode>::InnerIterator : public MatrixTypeNestedCleaned::InnerIterator
68 typedef typename MatrixTypeNestedCleaned::InnerIterator Base;
136 class SparseTriangularView<MatrixType,Mode>::ReverseInnerIterator : public MatrixTypeNestedCleaned::ReverseInnerIterator
138 typedef typename MatrixTypeNestedCleaned::ReverseInnerIterator Base;
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 36 typedef typename remove_all<MatrixTypeNested>::type MatrixTypeNestedCleaned;
41 Flags = MatrixTypeNestedCleaned::Flags & (HereditaryBits)
43 CoeffReadCost = MatrixTypeNestedCleaned::CoeffReadCost
60 typedef typename internal::traits<SelfAdjointView>::MatrixTypeNestedCleaned MatrixTypeNestedCleaned;
99 const MatrixTypeNestedCleaned& _expression() const { return m_matrix; }
101 const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; }
102 MatrixTypeNestedCleaned& nestedExpression() { return *const_cast<MatrixTypeNestedCleaned*>(&m_matrix); }
TriangularMatrix.h 142 typedef typename remove_all<MatrixTypeNested>::type MatrixTypeNestedCleaned;
147 Flags = (MatrixTypeNestedCleaned::Flags & (HereditaryBits) & (~(PacketAccessBit | DirectAccessBit | LinearAccessBit))) | Mode,
148 CoeffReadCost = MatrixTypeNestedCleaned::CoeffReadCost
173 typedef typename internal::traits<TriangularView>::MatrixTypeNestedCleaned MatrixTypeNestedCleaned;
237 const MatrixTypeNestedCleaned& nestedExpression() const { return m_matrix; }
238 MatrixTypeNestedCleaned& nestedExpression() { return *const_cast<MatrixTypeNestedCleaned*>(&m_matrix); }
708 <DenseDerived, typename internal::traits<Derived>::MatrixTypeNestedCleaned, Derived::Mode,
PermutationMatrix.h 572 typedef typename remove_all<typename MatrixType::Nested>::type MatrixTypeNestedCleaned;
587 if( is_same<MatrixTypeNestedCleaned,Dest>::value
588 && blas_traits<MatrixTypeNestedCleaned>::HasUsableDirectAccess
626 Block<const MatrixTypeNestedCleaned,Side==OnTheLeft ? 1 : MatrixType::RowsAtCompileTime,Side==OnTheRight ? 1 : MatrixType::ColsAtCompileTime>
Transpositions.h 364 typedef typename remove_all<typename MatrixType::Nested>::type MatrixTypeNestedCleaned;
379 if(!(is_same<MatrixTypeNestedCleaned,Dest>::value && extract_data(dst) == extract_data(m_matrix)))
  /external/eigen/Eigen/src/LU/
Inverse.h 279 typedef typename remove_all<MatrixTypeNested>::type MatrixTypeNestedCleaned;
296 compute_inverse<MatrixTypeNestedCleaned, Dest>::run(m_matrix, dst);

Completed in 301 milliseconds