OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
45
typedef typename internal::remove_all<MatrixTypeNested>::type
MatrixTypeNestedCleaned
;
50
inline const
MatrixTypeNestedCleaned
& nestedExpression() const { return m_matrix; }
64
class SparseTriangularView<MatrixType,Mode>::InnerIterator : public
MatrixTypeNestedCleaned
::InnerIterator
66
typedef typename
MatrixTypeNestedCleaned
::InnerIterator Base;
128
class SparseTriangularView<MatrixType,Mode>::ReverseInnerIterator : public
MatrixTypeNestedCleaned
::ReverseInnerIterator
130
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); }
698
<DenseDerived, typename internal::traits<Derived>::
MatrixTypeNestedCleaned
, Derived::Mode,
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)))
PermutationMatrix.h
543
typedef typename remove_all<typename MatrixType::Nested>::type
MatrixTypeNestedCleaned
;
556
if(is_same<
MatrixTypeNestedCleaned
,Dest>::value && extract_data(dst) == extract_data(m_matrix))
592
Block<const
MatrixTypeNestedCleaned
,Side==OnTheLeft ? 1 : MatrixType::RowsAtCompileTime,Side==OnTheRight ? 1 : MatrixType::ColsAtCompileTime>
/external/eigen/Eigen/src/LU/
Inverse.h
275
typedef typename remove_all<MatrixTypeNested>::type
MatrixTypeNestedCleaned
;
292
compute_inverse<
MatrixTypeNestedCleaned
, Dest>::run(m_matrix, dst);
Completed in 658 milliseconds