OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_outerSize
(Results
1 - 5
of
5
) sorted by null
/external/eigen/unsupported/Eigen/src/SparseExtra/
BlockOfDynamicSparseMatrix.h
42
: m_matrix(matrix), m_outerStart(outerStart),
m_outerSize
(outerSize)
48
: m_matrix(matrix), m_outerStart(outer),
m_outerSize
(Size)
66
for (Index j=0; j<
m_outerSize
.value(); ++j)
83
for (Index j=0; j<
m_outerSize
.value(); ++j)
101
EIGEN_STRONG_INLINE Index rows() const { return IsRowMajor ?
m_outerSize
.value() : m_matrix.rows(); }
102
EIGEN_STRONG_INLINE Index cols() const { return IsRowMajor ? m_matrix.cols() :
m_outerSize
.value(); }
108
const internal::variable_if_dynamic<Index, Size>
m_outerSize
;
/external/eigen/Eigen/src/SparseCore/
SparseMatrix.h
104
Index
m_outerSize
;
110
Eigen::Map<Matrix<Index,Dynamic,1> > innerNonZeros() { return Eigen::Map<Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?
m_outerSize
:0); }
111
const Eigen::Map<const Matrix<Index,Dynamic,1> > innerNonZeros() const { return Eigen::Map<const Matrix<Index,Dynamic,1> >(m_innerNonZeros, m_innerNonZeros?
m_outerSize
:0); }
119
inline Index rows() const { return IsRowMajor ?
m_outerSize
: m_innerSize; }
121
inline Index cols() const { return IsRowMajor ? m_innerSize :
m_outerSize
; }
126
inline Index outerSize() const { return
m_outerSize
; }
234
memset(m_outerIndex, 0, (
m_outerSize
+1)*sizeof(Index));
236
memset(m_innerNonZeros, 0, (
m_outerSize
)*sizeof(Index));
289
m_innerNonZeros = new Index[
m_outerSize
];
295
for(Index j=0; j<
m_outerSize
; ++j
[
all
...]
SparseBlock.h
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(); }
99
const internal::variable_if_dynamic<Index, Size>
m_outerSize
;
141
: m_matrix(matrix), m_outerStart(outerStart),
m_outerSize
(outerSize)
147
: m_matrix(matrix), m_outerStart(outer),
m_outerSize
(Size)
169
Index tail = m_matrix.outerIndexPtr()[m_outerStart+
m_outerSize
.value()];
213
for(Index k=0; k<
m_outerSize
.value(); ++k)
219
for(Index k = m_outerStart +
m_outerSize
.value(); k<=matrix.outerSize(); ++k
[
all
...]
MappedSparseMatrix.h
40
Index
m_outerSize
;
49
inline Index rows() const { return IsRowMajor ?
m_outerSize
: m_innerSize; }
50
inline Index cols() const { return IsRowMajor ? m_innerSize :
m_outerSize
; }
52
inline Index outerSize() const { return
m_outerSize
; }
107
:
m_outerSize
(IsRowMajor?rows:cols), m_innerSize(IsRowMajor?cols:rows), m_nnz(nnz), m_outerIndex(outerIndexPtr),
/external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h
64
Index
m_outerSize
;
75
return IsRowMajor ?
m_outerSize
: m_innerSize;
79
return IsRowMajor ? m_innerSize :
m_outerSize
;
87
return
m_outerSize
;
378
memset(m_colStartIndex, 0, (
m_outerSize
+ 1) * sizeof (Index));
379
memset(m_rowStartIndex, 0, (
m_outerSize
+ 1) * sizeof (Index));
616
m_outerSize
= diagSize;
621
m_outerSize
= diagSize;
631
:
m_outerSize
(-1), m_innerSize(0), m_colStartIndex(0), m_rowStartIndex(0) {
636
:
m_outerSize
(0), m_innerSize(0), m_colStartIndex(0), m_rowStartIndex(0)
[
all
...]
Completed in 1718 milliseconds