HomeSort by relevance Sort by last modified time
    Searched defs:Index (Results 51 - 75 of 428) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
fdjac1.h 14 typedef DenseIndex Index;
18 Index j, k;
20 Index msum;
22 Index start, length;
26 const Index n = x.size();
65 start = std::max<Index>(0,j-mu);
qrsolv.h 17 typedef DenseIndex Index;
20 Index i, j, k, l;
22 Index n = s.cols();
75 Index nsing;
r1updt.h 15 typedef DenseIndex Index;
19 const Index m = s.rows();
20 const Index n = s.cols();
21 Index i, j=1;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/src/
armCOMM_Bitstream.c 171 * Returns : Code Book Index if successfull.
185 OMX_INT Index;
194 for (Index=0; pCodeBook->codeLen != 0; Index++)
202 return Index;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/src/
armCOMM_Bitstream.c 171 * Returns : Code Book Index if successfull.
185 OMX_INT Index;
194 for (Index=0; pCodeBook->codeLen != 0; Index++)
202 return Index;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/src/
armCOMM_Bitstream.c 171 * Returns : Code Book Index if successfull.
185 OMX_INT Index;
194 for (Index=0; pCodeBook->codeLen != 0; Index++)
202 return Index;
  /external/chromium_org/third_party/WebKit/public/platform/
WebIDBMetadata.h 44 struct Index;
65 WebVector<Index> indexes;
71 struct Index {
77 Index()
  /external/eigen/Eigen/src/Geometry/
OrthoMethods.h 133 typedef typename Derived::Index Index;
138 Index maxi = 0;
139 Index sndi = 0;
  /external/eigen/Eigen/src/SparseCore/
CoreIterators.h 30 typedef typename Derived::Index Index;
34 EIGEN_STRONG_INLINE InnerIterator(const Derived& expr, Index outer)
46 EIGEN_STRONG_INLINE Index index() const { return m_inner; } function in class:Eigen::DenseBase::InnerIterator
47 inline Index row() const { return IsRowMajor ? m_outer : index(); }
48 inline Index col() const { return IsRowMajor ? index() : m_outer; }
54 Index m_inner
    [all...]
TriangularSolver.h 43 lastIndex = it.index();
74 while(it && it.index()<i)
78 eigen_assert(it && it.index()==i);
82 else if (it && it.index() == i)
86 tmp -= it.value() * other.coeff(it.index(),col);
113 while(it && it.index()<i)
117 eigen_assert(it && it.index()==i);
120 if (it && it.index()==i)
123 other.coeffRef(it.index(), col) -= tmp * it.value();
148 while(it && it.index()!=i
    [all...]
  /external/eigen/Eigen/src/misc/
Kernel.h 42 typedef typename Base::Index Index;
50 inline Index rows() const { return m_dec.cols(); }
51 inline Index cols() const { return m_cols; }
52 inline Index rank() const { return m_rank; }
62 Index m_rank, m_cols;
71 typedef typename MatrixType::Index Index; \
Solve.h 38 typedef typename Base::Index Index;
44 inline Index rows() const { return m_dec.cols(); }
45 inline Index cols() const { return m_rhs.cols(); }
65 typedef typename MatrixType::Index Index; \
  /external/eigen/test/
array_replicate.cpp 17 typedef typename MatrixType::Index Index;
24 Index rows = m.rows();
25 Index cols = m.cols();
array_reverse.cpp 18 typedef typename MatrixType::Index Index;
22 Index rows = m.rows();
23 Index cols = m.cols();
94 Index r = internal::random<Index>(0, rows-1),
95 c = internal::random<Index>(0, cols-1);
eigensolver_complex.cpp 35 typedef typename MatrixType::Index Index;
39 Index rows = m.rows();
40 Index cols = m.cols();
eigensolver_generic.cpp 17 typedef typename MatrixType::Index Index;
21 Index rows = m.rows();
22 Index cols = m.cols();