Searched defs:outerSize (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/web/
H A DViewportAnchor.cpp154 IntSize outerSize = scrollView.visibleContentRect().size(); local
158 absPinchViewportOffset.scale(outerSize.width(), outerSize.height());
163 IntRect outerRect = IntRect(flooredIntPoint(outerOrigin), outerSize);
/external/eigen/Eigen/src/SparseCore/
H A DSparseView.h48 inline Index outerSize() const { return m_matrix.outerSize(); } function in class:Eigen::SparseView
H A DMappedSparseMatrix.h52 inline Index outerSize() const { return m_outerSize; } function in class:Eigen::MappedSparseMatrix
H A DSparseBlock.h139 Index tail_size = m_matrix.outerIndexPtr()[m_matrix.outerSize()] - end;
159 newdata.resize(m_matrix.outerIndexPtr()[m_matrix.outerSize()] - block_size + nnz);
188 for(Index k = m_outerStart + m_outerSize.value(); k<=matrix.outerSize(); ++k)
268 Block<Derived,Dynamic,Dynamic,true> SparseMatrixBase<Derived>::innerVectors(Index outerStart, Index outerSize) argument
272 IsRowMajor ? outerSize : rows(), IsRowMajor ? cols() : outerSize);
280 const Block<const Derived,Dynamic,Dynamic,true> SparseMatrixBase<Derived>::innerVectors(Index outerStart, Index outerSize) const
284 IsRowMajor ? outerSize : rows(), IsRowMajor ? cols() : outerSize);
H A DSparseMatrixBase.h166 Index outerSize() const { return (int(Flags)&RowMajorBit) ? this->rows() : this->cols(); } function in class:Eigen::SparseMatrixBase
205 const Index outerSize = (int(OtherDerived::Flags) & RowMajorBit) ? other.rows() : other.cols(); local
212 for (Index j=0; j<outerSize; ++j)
240 const Index outerSize = other.outerSize(); local
246 for (Index j=0; j<outerSize; ++j)
273 for (Index row=0; row<nm.outerSize(); ++row)
406 Block<Derived,Dynamic,Dynamic,true> innerVectors(Index outerStart, Index outerSize);
407 const Block<const Derived,Dynamic,Dynamic,true> innerVectors(Index outerStart, Index outerSize) const;
414 for (Index j=0; j<outerSize();
[all...]
H A DSparseVector.h85 EIGEN_STRONG_INLINE Index outerSize() const { return 1; } function in class:Eigen::SparseVector
425 eigen_internal_assert(src.outerSize()==src.size());
438 if(src.outerSize()==1) sparse_vector_assign_selector<Dest,Src,SVA_Inner>::run(dst, src);
H A DSparseMatrix.h126 inline Index outerSize() const { return m_outerSize; } function in class:Eigen::SparseMatrix
226 reserve(Matrix<Index,Dynamic,1>::Constant(outerSize(), 2));
598 const Index outerSize = IsRowMajor ? rows : cols; local
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)
948 Matrix<Index,Dynamic,1> wi(trMat.outerSize());
[all...]
/external/eigen/unsupported/Eigen/src/Skyline/
H A DSkylineMatrixBase.h128 Index outerSize() const { function in class:Eigen::SkylineMatrixBase
H A DSkylineMatrix.h86 inline Index outerSize() const { function in class:Eigen::SkylineMatrix
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...]
/external/eigen/Eigen/src/Core/
H A DAssign.h262 const Index outerSize = dst.outerSize(); local
263 for(Index outer = 0; outer < outerSize; ++outer)
285 const Index outerSize = dst.outerSize(); local
286 for(Index outer = 0; outer < outerSize; ++outer)
329 const Index outerSize = dst.outerSize(); local
331 for(Index outer = 0; outer < outerSize; ++outer)
353 const Index outerSize local
451 const Index outerSize = dst.outerSize(); local
[all...]
H A DAssign_MKL.h93 const Index outerSize = dst.outerSize(); local
94 for(Index outer = 0; outer < outerSize; ++outer) {
H A DDenseBase.h196 Index outerSize() const function in class:Eigen::DenseBase
H A DRedux.h180 for(Index i = 1; i < mat.outerSize(); ++i)
261 const Index outerSize = mat.outerSize(); local
270 for(Index j=0; j<outerSize; ++j)
275 for(Index j=0; j<outerSize; ++j)
/external/eigen/unsupported/Eigen/src/SparseExtra/
H A DDynamicSparseMatrix.h80 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()); } function in class:Eigen::DynamicSparseMatrix
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
[all...]
H A DRandomSetter.h184 const Index outerSize = SwapStorage ? target.innerSize() : target.outerSize(); local
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/
H A DSuperLUSupport.h277 Index outerSize = (Flags&RowMajor)==RowMajor ? sluMat.ncol : sluMat.nrow; local
280 sluMat.nrow, sluMat.ncol, sluMat.storage.outerInd[outerSize],

Completed in 2129 milliseconds