/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 …other.m_values), m_indices(other.m_indices), m_outer(other.m_outer), m_id(other.m_id), m_end(other… 152 m_id = other.m_id; 162 m_id = 0; 167 m_id = mat.outerIndexPtr()[outer]; 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()) 187 inline InnerIterator& operator++() { m_id++; return *this; } 189 inline const Scalar& value() const { return m_values[m_id]; } [all …]
|
D | SparseCwiseBinaryOp.h | 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_rhsIter(aEval.m_rhsImpl,outer), m_functor(aEval.m_functor), m_value(0), m_id(-1), m_innerSize(aE… 177 ++m_id; 178 if(m_id<m_innerSize) [all …]
|
/external/libcxx/test/support/ |
D | type_id.h | 29 {return LHS.m_id == RHS.m_id; } 31 {return LHS.m_id != RHS.m_id; } 34 return demangle(m_id); in name() 43 explicit constexpr TypeID(const char* xid) : m_id(xid) {} in TypeID() 48 const char* const m_id; member
|
D | container_test_types.h | 102 {return LHS.m_id == RHS.m_id; } 104 {return LHS.m_id != RHS.m_id; } 106 explicit constexpr TypeID(const int* xid) : m_id(xid) {} in TypeID() 107 const int* const m_id; member
|
/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/testng/src/test/java/test/timeout/ |
D | TimeOutTest.java | 13 private final long m_id; field in TimeOutTest 16 m_id = System.currentTimeMillis(); in TimeOutTest() 72 return m_id;
|
/external/eigen/unsupported/Eigen/src/SparseExtra/ |
D | BlockSparseMatrix.h | 982 m_id(mat.m_outerIndex[outer]), 987 inline BlockInnerIterator& operator++() {m_id++; return *this; } 991 return Map<const BlockScalar>(&(m_mat.m_values[m_mat.blockPtr(m_id)]), 996 return Map<BlockScalar>(&(m_mat.m_values[m_mat.blockPtr(m_id)]), 1000 inline Index index() const {return m_mat.m_indices[m_id]; } 1010 inline operator bool() const { return (m_id < m_end); } 1015 Index m_id; 1030 m_id = m_mat.blockInnerIndex(itb.index()); 1031 m_start = m_id; 1037 m_id++; [all …]
|
/external/v8/src/inspector/ |
D | remote-object-id.h | 32 int id() const { return m_id; } in id() 37 int m_id; variable
|
D | remote-object-id.cc | 29 RemoteObjectId::RemoteObjectId() : RemoteObjectIdBase(), m_id(0) {} in RemoteObjectId() 38 bool success = parsedObjectId->getInteger("id", &remoteObjectId->m_id); in parse()
|
D | v8-debugger-script.h | 57 const String16& scriptId() const { return m_id; } in scriptId() 86 String16 m_id; variable
|
D | v8-profiler-agent-impl.cc | 146 : m_id(id), m_title(title) {} in ProfileDescriptor() 147 String16 m_id; member in v8_inspector::V8ProfilerAgentImpl::ProfileDescriptor 179 id = m_startedProfiles.back().m_id; in consoleProfileEnd() 186 id = m_startedProfiles[i].m_id; in consoleProfileEnd() 212 stopProfiling(m_startedProfiles[i - 1].m_id, false); in disable()
|
D | v8-debugger-script.cc | 291 : m_id(std::move(id)), m_url(std::move(url)), m_isolate(isolate) {} in V8DebuggerScript()
|
/external/testng/src/main/java/org/testng/internal/ |
D | ClonedMethod.java | 20 private String m_id; field in ClonedMethod 89 return m_id; in getId() 259 m_id = id; in setId()
|
D | BaseTestMethod.java | 43 protected String m_id = ""; field in BaseTestMethod 360 return m_id; in getId() 368 m_id = id; in setId()
|
/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()
|
/external/ltp/testcases/kernel/fs/scsi/ltpscsi/ |
D | scsimain.c | 741 My_sg_scsi_id m_id; /* compatible with sg_scsi_id_t in sg.h */ in run_sg_scan_tests() local 743 res = ioctl(sg_fd, SG_GET_SCSI_ID, &m_id); in run_sg_scan_tests() 751 printf(" type=%d", m_id.scsi_type); in run_sg_scan_tests() 754 m_id.h_cmd_per_lun, m_id.d_queue_depth); in run_sg_scan_tests()
|