HomeSort by relevance Sort by last modified time
    Searched defs:outerSize (Results 1 - 16 of 16) sorted by null

  /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/Eigen/src/Core/
DenseBase.h 218 Index outerSize() const
Redux.h 197 for(Index i = 1; i < mat.outerSize(); ++i)
278 const Index outerSize = mat.outerSize();
287 for(Index j=0; j<outerSize; ++j)
292 for(Index j=0; j<outerSize; ++j)
361 EIGEN_DEVICE_FUNC Index outerSize() const { return m_xpr.outerSize(); }
AssignEvaluator.h 324 for(Index outer = 0; outer < kernel.outerSize(); ++outer) {
349 const Index outerSize = kernel.outerSize();
350 for(Index outer = 0; outer < outerSize; ++outer)
454 const Index outerSize = kernel.outerSize();
456 for(Index outer = 0; outer < outerSize; ++outer)
479 const Index outerSize = kernel.outerSize();
480 for(Index outer = 0; outer < outerSize; ++outer
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMap.h 84 /** \copydoc SparseMatrixBase::outerSize() */
85 inline Index outerSize() const { return m_outerSize; }
SparseView.h 62 inline Index outerSize() const { return m_matrix.outerSize(); }
SparseMatrixBase.h 184 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); }
222 for (Index row=0; row<nm.outerSize(); ++row)
362 InnerVectorsReturnType innerVectors(Index outerStart, Index outerSize);
363 const ConstInnerVectorsReturnType innerVectors(Index outerStart, Index outerSize) const;
SparseVector.h 84 EIGEN_STRONG_INLINE Index outerSize() const { return 1; }
296 eigen_assert(other.outerSize()==1);
454 eigen_internal_assert(src.outerSize()==src.size());
469 if(src.outerSize()==1) sparse_vector_assign_selector<Dest,Src,SVA_Inner>::run(dst, src);
SparseMatrix.h 143 inline Index outerSize() const { return m_outerSize; }
278 * for \c i in the [0,this->outerSize()[ range.
623 const Index outerSize = IsRowMajor ? rows : cols;
626 if (m_outerSize != outerSize || m_outerSize==0)
629 m_outerIndex = static_cast<StorageIndex*>(std::malloc((outerSize + 1) * sizeof(StorageIndex)));
632 m_outerSize = outerSize;
799 for (Index i=0; i<m.outerSize(); ++i)
815 for (Index i=0; i<m.outerSize(); ++i) {
822 for (Index i=0; i<m.outerSize(); ++i) {
    [all...]
  /external/eigen/unsupported/Eigen/src/SparseExtra/
DynamicSparseMatrix.h 82 inline Index rows() const { return IsRowMajor ? outerSize() : m_innerSize; }
83 inline Index cols() const { return IsRowMajor ? m_innerSize : outerSize(); }
85 inline Index outerSize() const { return convert_index(m_data.size()); }
117 for (Index j=0; j<outerSize(); ++j)
125 for (Index j=0; j<outerSize(); ++j)
134 if (outerSize()>0)
136 Index reserveSizePerVector = (std::max)(reserveSize/outerSize(),Index(4));
137 for (Index j=0; j<outerSize(); ++j)
193 for (Index j=0; j<outerSize(); ++j)
201 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;
BlockSparseMatrix.h 122 Index outerSize() const
741 return (IsColMajor ? innerSize() : outerSize());
750 return (IsColMajor ? outerSize() : innerSize());
759 inline Index outerSize() const
781 eigen_assert(outer < outerSize() && "OUTER INDEX OUT OF BOUNDS");
    [all...]
  /external/skia/src/core/
SkDraw_vertices.cpp 220 constexpr size_t outerSize = sizeof(SkTriColorShader) +
223 SkSTArenaAlloc<outerSize> outerAlloc;
  /external/skqp/src/core/
SkDraw_vertices.cpp 219 constexpr size_t outerSize = sizeof(SkTriColorShader) +
222 SkSTArenaAlloc<outerSize> outerAlloc;
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 303 Index outerSize = (Flags&RowMajor)==RowMajor ? sluMat.ncol : sluMat.nrow;
306 sluMat.nrow, sluMat.ncol, sluMat.storage.outerInd[outerSize],
    [all...]

Completed in 369 milliseconds