Searched refs:m_id (Results 1 – 10 of 10) sorted by relevance
/external/eigen/Eigen/src/SparseCore/ |
D | MappedSparseMatrix.h | 124 m_id(mat.outerIndexPtr()[outer]), 125 m_start(m_id), 129 inline InnerIterator& operator++() { m_id++; return *this; } 131 inline Scalar value() const { return m_matrix.valuePtr()[m_id]; } 132 inline Scalar& valueRef() { return const_cast<Scalar&>(m_matrix.valuePtr()[m_id]); } 134 inline Index index() const { return m_matrix.innerIndexPtr()[m_id]; } 138 inline operator bool() const { return (m_id < m_end) && (m_id>=m_start); } 143 Index m_id; 155 m_id(mat.outerIndexPtr()[outer+1]), 157 m_end(m_id) [all …]
|
D | SparseVector.h | 352 : m_data(vec.m_data), m_id(0), m_end(static_cast<Index>(m_data.size())) 359 : m_data(data), m_id(0), m_end(static_cast<Index>(m_data.size())) 362 inline InnerIterator& operator++() { m_id++; return *this; } 364 inline Scalar value() const { return m_data.value(m_id); } 365 inline Scalar& valueRef() { return const_cast<Scalar&>(m_data.value(m_id)); } 367 inline Index index() const { return m_data.index(m_id); } 371 inline operator bool() const { return (m_id < m_end); } 375 Index m_id; 384 : m_data(vec.m_data), m_id(static_cast<Index>(m_data.size())), m_start(0) 391 : m_data(data), m_id(static_cast<Index>(m_data.size())), m_start(0) [all …]
|
D | SparseCwiseBinaryOp.h | 117 m_id = m_lhsIter.index(); 124 m_id = m_lhsIter.index(); 130 m_id = m_rhsIter.index(); 137 m_id = -1; 144 EIGEN_STRONG_INLINE Index index() const { return m_id; } 148 EIGEN_STRONG_INLINE operator bool() const { return m_id>=0; } 155 Index m_id;
|
D | SparseMatrix.h | 873 …: m_values(mat.valuePtr()), m_indices(mat.innerIndexPtr()), m_outer(outer), m_id(mat.m_outerIndex[… 878 m_end = m_id + mat.m_innerNonZeros[outer]; 881 inline InnerIterator& operator++() { m_id++; return *this; } 883 inline const Scalar& value() const { return m_values[m_id]; } 884 inline Scalar& valueRef() { return const_cast<Scalar&>(m_values[m_id]); } 886 inline Index index() const { return m_indices[m_id]; } 891 inline operator bool() const { return (m_id < m_end); } 897 Index m_id; 909 m_id = mat.m_outerIndex[outer+1]; 911 m_id = m_start + mat.m_innerNonZeros[outer]; [all …]
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
D | SkylineMatrix.h | 740 m_id(_Options == RowMajor ? mat.m_colStartIndex[outer] : mat.m_rowStartIndex[outer] + 1), 741 m_start(m_id), 746 m_id++; 751 m_id += shift; 756 return m_matrix.m_data.upper(m_id); 760 return const_cast<Scalar*> (&(m_matrix.m_data.upper(m_id))); 764 return const_cast<Scalar&> (m_matrix.m_data.upper(m_id)); 768 return IsRowMajor ? m_outer - m_matrix.m_data.upperProfile(m_outer) + (m_id - m_start) : 769 m_outer + (m_id - m_start) + 1; 785 return (m_id < m_end) && (m_id >= m_start); [all …]
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/ |
D | PropertyTable.java | 843 if (propertyInfo.m_id.equals(m_activePropertyId)) { in setInput0() 1020 m_activePropertyId = m_activePropertyInfo.m_id; in setActivePropertyInfo() 1354 private final String m_id; field in PropertyTable.PropertyInfo 1373 m_id = idPrefix + "|" + property.getName(); in PropertyInfo() 1446 m_expandedIds.add(m_id); in expand() 1449 m_collapsedIds.remove(m_id); in expand() 1466 m_expandedIds.remove(m_id); in collapse() 1469 m_collapsedIds.add(m_id); in collapse() 1546 return new PropertyInfo(subProperty, m_id, m_level + 1); in createSubPropertyInfo() 1571 if (isComplex() && !isExpanded() && m_expandedIds.contains(m_id)) { in expandFromHistory() [all …]
|
/external/lldb/source/Target/ |
D | StackFrame.cpp | 57 m_id (pc, cfa, NULL), in StackFrame() 85 m_id (pc, cfa, NULL), in StackFrame() 120 m_id (pc_addr.GetLoadAddress (thread_sp->CalculateTarget().get()), cfa, NULL), in StackFrame() 174 if (m_id.GetSymbolContextScope ()) in GetStackID() 199 return m_id; in GetStackID() 216 m_id.SetSymbolContextScope (symbol_scope); in SetSymbolContextScope() 1340 m_id.SetPC (curr_frame.m_id.GetPC()); // Update the Stack ID PC value in UpdatePreviousFrameFromCurrentFrame()
|
D | StackFrameList.cpp | 327 cfa = unwind_frame_sp->m_id.GetCallFrameAddress(); in GetFramesUpTo()
|
/external/lldb/include/lldb/Target/ |
D | StackFrame.h | 193 StackID m_id; variable
|
/external/deqp/modules/egl/ |
D | teglMultiThreadTests.cpp | 124 int getId (void) const { return m_id; } in getId() 136 const int m_id; member in deqp::egl::TestThread 181 , m_id (id) in TestThread()
|