HomeSort by relevance Sort by last modified time
    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 166 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); }
205 const Index outerSize = (int(OtherDerived::Flags) & RowMajorBit) ? other.rows() : other.cols();
212 for (Index j=0; j<outerSize; ++j)
240 const Index outerSize = other.outerSize();
246 for (Index j=0; j<outerSize; ++j)
273 for (Index row=0; row<nm.outerSize(); ++row)
409 InnerVectorsReturnType innerVectors(Index outerStart, Index outerSize);
410 const ConstInnerVectorsReturnType innerVectors(Index outerStart, Index outerSize) const;
417 for (Index j=0; j<outerSize(); ++j
    [all...]
SparseVector.h 85 EIGEN_STRONG_INLINE Index outerSize() const { return 1; }
425 eigen_internal_assert(src.outerSize()==src.size());
438 if(src.outerSize()==1) sparse_vector_assign_selector<Dest,Src,SVA_Inner>::run(dst, src);
SparseMatrix.h 126 inline Index outerSize() const { return m_outerSize; }
226 reserve(Matrix<Index,Dynamic,1>::Constant(outerSize(), 2));
598 const Index outerSize = IsRowMajor ? rows : cols;
601 if (m_outerSize != outerSize || m_outerSize==0)
604 m_outerIndex = static_cast<Index*>(std::malloc((outerSize + 1) * sizeof(Index)));
607 m_outerSize = outerSize;
753 for (Index i=0; i<m.outerSize(); ++i)
766 for (Index i=0; i<m.outerSize(); ++i)
772 for (Index i=0; i<m.outerSize(); ++i)
    [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 196 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 3373 milliseconds