/external/eigen/Eigen/src/SparseCore/ |
D | SparseCompressedBase.h | 140 : 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;
|
D | AmbiVector.h | 42 …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)
|
D | SparseView.h | 153 : 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;
|
D | SparseBlock.h | 508 Index m_end; 514 …m_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; 543 …m_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/catch2/include/internal/ |
D | catch_generators_specific.hpp | 88 T m_end; member in Catch::Generators::RangeGenerator 95 m_end(end), in RangeGenerator() 99 assert(m_current != m_end && "Range start and end cannot be equal"); in RangeGenerator() 101 …assert(((m_positive && m_current <= m_end) || (!m_positive && m_current >= m_end)) && "Step moves … in RangeGenerator() 114 return (m_positive) ? (m_current < m_end) : (m_current > m_end); in next()
|
/external/pdfium/xfa/fxfa/fm2js/ |
D | cxfa_fmlexer.cpp | 160 m_end(m_cursor + wsFormCalc.GetLength() - 1), in CXFA_FMLexer() 171 while (m_cursor <= m_end && *m_cursor) { in NextToken() 208 if (m_cursor > m_end) { in NextToken() 226 if (m_cursor > m_end) { in NextToken() 247 if (m_cursor > m_end) { in NextToken() 305 if (m_cursor > m_end) { in NextToken() 323 if (m_cursor > m_end) { in NextToken() 388 while (m_cursor <= m_end && *m_cursor) { in AdvanceForString() 396 if (m_cursor > m_end) { in AdvanceForString() 421 while (m_cursor <= m_end && *m_cursor) { in AdvanceForIdentifier() [all …]
|
D | cxfa_fmlexer.h | 128 const wchar_t* const m_end; variable
|
/external/testng/src/test/java/test/listeners/ |
D | EndMillisShouldNotBeZeroTest.java | 15 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()
|
D | ResultListener.java | 9 public static long m_end = 0; field in ResultListener 23 m_end = result.getEndMillis(); in onTestSuccess()
|
D | ResultEndMillisTest.java | 18 Assert.assertTrue(ResultListener.m_end > 0); in endMillisShouldBeNonNull()
|
/external/deqp/framework/randomshaders/ |
D | rsgVariableManager.hpp | 124 , 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/ |
D | CoreIterators.h | 83 : 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/ |
D | tcuFormatUtil.hpp | 92 , 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/catch2/docs/ |
D | matchers.md | 90 int m_begin, m_end; 92 IntRange( int begin, int end ) : m_begin( begin ), m_end( end ) {} 96 return i >= m_begin && i <= m_end; 105 ss << "is between " << m_begin << " and " << m_end;
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | tiled_dot_emitter.cc | 735 llvm::Value* m_end); 823 const int64 m_end = dims().m() - dims().m() % tile_size_m(); in HandleResiduesOnM() local 825 GetInt64(0), GetInt64(m_end)); in HandleResiduesOnM() 827 if (m_end != dims().m()) { in HandleResiduesOnM() 829 dims().m() - m_end, GetInt64(m_end), GetInt64(dims().m())); in HandleResiduesOnM() 906 int64 tile_size_m, llvm::Value* m_start, llvm::Value* m_end) { in EmitTiledGemm() argument 907 ksl_.For("dot.m", m_start, m_end, tile_size_m, [&](llvm::Value* m_i) { in EmitTiledGemm()
|
/external/catch2/include/external/ |
D | clara.hpp | 89 size_t m_end = 0; member in Catch::clara::TextFlow::Column::iterator 113 m_end = m_pos; in calcLength() 114 while (m_end < line().size() && line()[m_end] != '\n') in calcLength() 115 ++m_end; in calcLength() 117 if (m_end < m_pos + width) { in calcLength() 118 m_len = m_end - m_pos; in calcLength() 161 assert(m_pos <= m_end); in operator *()
|
/external/catch2/third_party/ |
D | clara.hpp | 87 size_t m_end = 0; member in clara::TextFlow::Column::iterator 112 m_end = m_pos; in calcLength() 113 while( m_end < line().size() && line()[m_end] != '\n' ) in calcLength() 114 ++m_end; in calcLength() 116 if( m_end < m_pos + width ) { in calcLength() 117 m_len = m_end - m_pos; in calcLength() 161 assert( m_pos <= m_end ); in operator *()
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockSparseMatrix.h | 983 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/ |
D | SkylineMatrix.h | 742 …m_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; 805 …m_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/ |
D | glsFboUtil.hpp | 56 const T* m_end; member 59 const T* end (void) const { return m_end; } in end()
|
/external/testng/src/main/java/org/testng/ |
D | TestNG.java | 185 protected long m_end; field in TestNG 1078 m_end = System.currentTimeMillis(); in run() 2014 return m_end; in getEnd()
|
/external/catch2/single_include/catch2/ |
D | catch.hpp | 4110 T m_end; member in Catch::Generators::RangeGenerator 4117 m_end(end), in RangeGenerator() 4121 assert(m_current != m_end && "Range start and end cannot be equal"); in RangeGenerator() 4123 …assert(((m_positive && m_current <= m_end) || (!m_positive && m_current >= m_end)) && "Step moves … in RangeGenerator() 4136 return (m_positive) ? (m_current < m_end) : (m_current > m_end); in next() 6595 size_t m_end = 0; member in Catch::clara::TextFlow::Column::iterator 6619 m_end = m_pos; in calcLength() 6620 while (m_end < line().size() && line()[m_end] != '\n') in calcLength() 6621 ++m_end; in calcLength() 6623 if (m_end < m_pos + width) { in calcLength() [all …]
|