OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:outerSize
(Results
1 - 14
of
14
) sorted by null
/external/eigen/Eigen/src/SparseCore/
SparseView.h
48
inline Index
outerSize
() const { return m_matrix.
outerSize
(); }
MappedSparseMatrix.h
52
inline Index
outerSize
() const { return m_outerSize; }
SparseMatrixBase.h
163
Index
outerSize
() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); }
202
const Index
outerSize
= (int(OtherDerived::Flags) & RowMajorBit) ? other.rows() : other.cols();
209
for (Index j=0; j<
outerSize
; ++j)
237
const Index
outerSize
= other.
outerSize
();
243
for (Index j=0; j<
outerSize
; ++j)
270
for (Index row=0; row<nm.
outerSize
(); ++row)
413
SparseInnerVectorSet<Derived,Dynamic> innerVectors(Index outerStart, Index
outerSize
);
414
const SparseInnerVectorSet<Derived,Dynamic> innerVectors(Index outerStart, Index
outerSize
) const;
421
for (Index j=0; j<
outerSize
(); ++j
[
all
...]
SparseVector.h
80
EIGEN_STRONG_INLINE Index
outerSize
() const { return 1; }
SparseMatrix.h
126
inline Index
outerSize
() const { return m_outerSize; }
220
reserve(VectorXi::Constant(
outerSize
(), 2));
514
const Index
outerSize
= IsRowMajor ? rows : cols;
517
if (m_outerSize !=
outerSize
|| m_outerSize==0)
520
m_outerIndex = new Index [
outerSize
+1];
521
m_outerSize =
outerSize
;
638
Eigen::Map<Matrix<Index, Dynamic, 1> > (m_outerIndex,
outerSize
()).setZero();
641
for (Index j=0; j<otherCopy.
outerSize
(); ++j)
647
VectorXi positions(
outerSize
());
648
for (Index j=0; j<
outerSize
(); ++j
[
all
...]
/external/eigen/Eigen/src/Core/
Assign_MKL.h
93
const Index
outerSize
= dst.
outerSize
();
94
for(Index outer = 0; outer <
outerSize
; ++outer) {
Assign.h
262
const Index
outerSize
= dst.
outerSize
();
263
for(Index outer = 0; outer <
outerSize
; ++outer)
285
const Index
outerSize
= dst.
outerSize
();
286
for(Index outer = 0; outer <
outerSize
; ++outer)
329
const Index
outerSize
= dst.
outerSize
();
331
for(Index outer = 0; outer <
outerSize
; ++outer)
353
const Index
outerSize
= dst.outerSize()
[
all
...]
DenseBase.h
186
Index
outerSize
() const
Redux.h
180
for(Index i = 1; i < mat.
outerSize
(); ++i)
261
const Index
outerSize
= mat.
outerSize
();
270
for(Index j=0; j<
outerSize
; ++j)
275
for(Index j=0; j<
outerSize
; ++j)
/external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrix.h
86
inline Index
outerSize
() const {
150
eigen_assert(outer <
outerSize
());
199
eigen_assert(outer <
outerSize
());
235
eigen_assert(idx <
outerSize
());
244
eigen_assert(outer <
outerSize
());
268
eigen_assert(outer <
outerSize
());
288
eigen_assert(idx <
outerSize
());
297
eigen_assert(outer <
outerSize
());
316
eigen_assert(outer <
outerSize
());
333
eigen_assert(outer <
outerSize
());
[
all
...]
SkylineMatrixBase.h
128
Index
outerSize
() const {
/external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h
80
inline Index rows() const { return IsRowMajor ?
outerSize
() : m_innerSize; }
81
inline Index cols() const { return IsRowMajor ? m_innerSize :
outerSize
(); }
83
inline Index
outerSize
() const { return static_cast<Index>(m_data.size()); }
115
for (Index j=0; j<
outerSize
(); ++j)
123
for (Index j=0; j<
outerSize
(); ++j)
132
if (
outerSize
()>0)
134
Index reserveSizePerVector = (std::max)(reserveSize/
outerSize
(),Index(4));
135
for (Index j=0; j<
outerSize
(); ++j)
191
for (Index j=0; j<
outerSize
(); ++j)
199
const Index
outerSize
= IsRowMajor ? rows : cols
[
all
...]
RandomSetter.h
184
const Index
outerSize
= SwapStorage ? target.innerSize() : target.
outerSize
();
185
const Index innerSize = SwapStorage ? target.
outerSize
() : target.innerSize();
186
m_outerPackets =
outerSize
>> OuterPacketBits;
187
if (
outerSize
&OuterPacketMask)
203
for (Index j=0; j<mp_target->
outerSize
(); ++j)
239
VectorXi positions(mp_target->
outerSize
());
253
for (Index j=0; j<mp_target->
outerSize
(); ++j)
261
mp_target->outerIndexPtr()[mp_target->
outerSize
()] = count;
/external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h
277
Index
outerSize
= (Flags&RowMajor)==RowMajor ? sluMat.ncol : sluMat.nrow;
280
sluMat.nrow, sluMat.ncol, sluMat.storage.outerInd[
outerSize
],
Completed in 2826 milliseconds