Lines Matching refs:m_id

85         m_id = m_lhsIter.index();
92 m_id = m_lhsIter.index();
98 m_id = m_rhsIter.index();
105 m_id = -1;
112 EIGEN_STRONG_INLINE StorageIndex index() const { return m_id; }
117 EIGEN_STRONG_INLINE operator bool() const { return m_id>=0; }
124 StorageIndex m_id;
170 : m_lhsEval(aEval.m_lhsImpl), m_rhsIter(aEval.m_rhsImpl,outer), m_functor(aEval.m_functor), m_value(0), m_id(-1), m_innerSize(aEval.m_expr.rhs().innerSize())
177 ++m_id;
178 if(m_id<m_innerSize)
180 Scalar lhsVal = m_lhsEval.coeff(IsRowMajor?m_rhsIter.outer():m_id,
181 IsRowMajor?m_id:m_rhsIter.outer());
182 if(m_rhsIter && m_rhsIter.index()==m_id)
194 EIGEN_STRONG_INLINE Scalar value() const { eigen_internal_assert(m_id<m_innerSize); return m_value; }
196 EIGEN_STRONG_INLINE StorageIndex index() const { return m_id; }
198 EIGEN_STRONG_INLINE Index row() const { return IsRowMajor ? m_rhsIter.outer() : m_id; }
199 EIGEN_STRONG_INLINE Index col() const { return IsRowMajor ? m_id : m_rhsIter.outer(); }
201 EIGEN_STRONG_INLINE operator bool() const { return m_id<m_innerSize; }
208 StorageIndex m_id;
258 : m_lhsIter(aEval.m_lhsImpl,outer), m_rhsEval(aEval.m_rhsImpl), m_functor(aEval.m_functor), m_value(0), m_id(-1), m_innerSize(aEval.m_expr.lhs().innerSize())
265 ++m_id;
266 if(m_id<m_innerSize)
268 Scalar rhsVal = m_rhsEval.coeff(IsRowMajor?m_lhsIter.outer():m_id,
269 IsRowMajor?m_id:m_lhsIter.outer());
270 if(m_lhsIter && m_lhsIter.index()==m_id)
282 EIGEN_STRONG_INLINE Scalar value() const { eigen_internal_assert(m_id<m_innerSize); return m_value; }
284 EIGEN_STRONG_INLINE StorageIndex index() const { return m_id; }
286 EIGEN_STRONG_INLINE Index row() const { return IsRowMajor ? m_lhsIter.outer() : m_id; }
287 EIGEN_STRONG_INLINE Index col() const { return IsRowMajor ? m_id : m_lhsIter.outer(); }
289 EIGEN_STRONG_INLINE operator bool() const { return m_id<m_innerSize; }
296 StorageIndex m_id;