Home
last modified time | relevance | path

Searched refs:m_end (Results 1 – 14 of 14) sorted by relevance

/external/eigen/Eigen/src/SparseCore/
DSparseCompressedBase.h140 : m_values(0), m_indices(0), m_outer(0), m_id(0), m_end(0)
144 …m_values), m_indices(other.m_indices), m_outer(other.m_outer), m_id(other.m_id), m_end(other.m_end)
153 m_end = other.m_end;
163 m_end = mat.nonZeros();
169 m_end = mat.outerIndexPtr()[outer+1];
171 m_end = m_id + mat.innerNonZeroPtr()[outer];
176 …: m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(0), m_id(0), m_end(mat.nonZero…
182 … : m_values(data.valuePtr()), m_indices(data.indexPtr()), m_outer(0), m_id(0), m_end(data.size())
197 inline operator bool() const { return (m_id < m_end); }
205 Index m_end;
DAmbiVector.h42 …void setBounds(Index start, Index end) { m_start = convert_index(start); m_end = convert_index(end… in setBounds()
87 m_end = m_size; in reallocate()
116 StorageIndex m_end; variable
134 return m_end - m_start; in nonZeros()
174 for (Index i=m_start; i<m_end; ++i) in setZero()
339 } while (m_cachedIndex<m_vector.m_end && abs(m_vector.m_buffer[m_cachedIndex])<=m_epsilon);
340 if (m_cachedIndex<m_vector.m_end)
DSparseView.h153 : m_sve(sve), m_inner(0), m_outer(outer), m_end(sve.m_view.innerSize())
175 EIGEN_STRONG_INLINE operator bool() const { return m_inner < m_end && m_inner>=0; }
181 const Index m_end;
DSparseBlock.h508 Index m_end;
514m_end(IsRowMajor ? aEval.m_block.startCol()+aEval.m_block.blockCols() : aEval.m_block.startRow()+a…
525 …ne operator bool() const { return EvalIterator::operator bool() && EvalIterator::index() < m_end; }
535 Index m_end;
543m_end(IsRowMajor ? aEval.m_block.startCol()+aEval.m_block.blockCols() : aEval.m_block.startRow()+a…
565 while(++m_outerPos<m_end)
577 inline operator bool() const { return m_outerPos < m_end; }
/external/testng/src/test/java/test/listeners/
DEndMillisShouldNotBeZeroTest.java15 private static long m_end; field in EndMillisShouldNotBeZeroTest
25 m_end = testResult.getEndMillis(); in afterInvocation()
32 m_end = 0; in bm()
48 Assert.assertTrue(m_end > 0); in f2()
DResultListener.java9 public static long m_end = 0; field in ResultListener
23 m_end = result.getEndMillis(); in onTestSuccess()
DResultEndMillisTest.java18 Assert.assertTrue(ResultListener.m_end > 0); in endMillisShouldBeNonNull()
/external/deqp/framework/randomshaders/
DrsgVariableManager.hpp124 , m_end (end) in FilteredIterator()
133 nextEntry = findNext(m_filter, nextEntry, m_end); in operator +()
134 return FilteredIterator(nextEntry, m_end, m_filter); in operator +()
140 m_iter = findNext(m_filter, m_iter, m_end); in operator ++()
148 m_iter = findNext(m_filter, m_iter, m_end); in operator ++()
164 DE_ASSERT(m_iter != m_end); in operator *()
179 Iterator m_end; member in rsg::FilteredIterator
/external/eigen/Eigen/src/Core/
DCoreIterators.h83 : m_eval(eval), m_inner(0), m_outer(outerId), m_end(innerSize) in inner_iterator_selector()
98 EIGEN_STRONG_INLINE operator bool() const { return m_inner < m_end && m_inner>=0; }
104 const Index m_end; variable
/external/deqp/framework/common/
DtcuFormatUtil.hpp92 , m_end (end) in Bitfield()
99 for (const BitDesc* curDesc = m_begin; curDesc != m_end; curDesc++) in toStream()
123 const BitDesc* m_end; member in tcu::Format::Bitfield
/external/eigen/unsupported/Eigen/src/SparseExtra/
DBlockSparseMatrix.h983 m_end(mat.m_outerIndex[outer+1])
1010 inline operator bool() const { return (m_id < m_end); }
1016 Index m_end;
1032 m_end = m_mat.blockInnerIndex(itb.index()+1);
1038 if (m_id >= m_end)
1045 m_end = m_mat.blockInnerIndex(itb.index()+1);
1074 Index m_end; // starting inner index of the next block
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineMatrix.h742m_end(_Options == RowMajor ? mat.m_colStartIndex[outer + 1] : mat.m_rowStartIndex[outer + 1] + 1) {
785 return (m_id < m_end) && (m_id >= m_start);
793 const Index m_end;
805m_end(_Options == RowMajor ? mat.m_rowStartIndex[outer + 1] : mat.m_colStartIndex[outer + 1] + 1) {
849 return (m_id < m_end) && (m_id >= m_start);
857 const Index m_end;
/external/deqp/modules/glshared/
DglsFboUtil.hpp56 const T* m_end; member
59 const T* end (void) const { return m_end; } in end()
/external/testng/src/main/java/org/testng/
DTestNG.java185 protected long m_end; field in TestNG
1078 m_end = System.currentTimeMillis(); in run()
2014 return m_end; in getEnd()