Searched refs:colId (Results 1 – 8 of 8) sorted by relevance
/external/eigen/Eigen/src/Core/ |
D | Block.h | 222 inline Scalar& coeffRef(Index rowId, Index colId) 225 return m_xpr.coeffRef(rowId + m_startRow.value(), colId + m_startCol.value()); 229 inline const Scalar& coeffRef(Index rowId, Index colId) const 231 return m_xpr.derived().coeffRef(rowId + m_startRow.value(), colId + m_startCol.value()); 235 EIGEN_STRONG_INLINE const CoeffReturnType coeff(Index rowId, Index colId) const 237 return m_xpr.coeff(rowId + m_startRow.value(), colId + m_startCol.value()); 263 inline PacketScalar packet(Index rowId, Index colId) const 265 … return m_xpr.template packet<Unaligned>(rowId + m_startRow.value(), colId + m_startCol.value()); 269 inline void writePacket(Index rowId, Index colId, const PacketScalar& val) 271 …m_xpr.template writePacket<Unaligned>(rowId + m_startRow.value(), colId + m_startCol.value(), val);
|
D | MapBase.h | 103 inline const Scalar& coeff(Index rowId, Index colId) const in coeff() argument 105 return m_data[colId * colStride() + rowId * rowStride()]; in coeff() 118 inline const Scalar& coeffRef(Index rowId, Index colId) const in coeffRef() argument 120 return this->m_data[colId * colStride() + rowId * rowStride()]; in coeffRef() 133 inline PacketScalar packet(Index rowId, Index colId) const in packet() argument 136 (m_data + (colId * colStride() + rowId * rowStride())); in packet()
|
D | ArrayWrapper.h | 78 inline const Scalar& coeffRef(Index rowId, Index colId) const 80 return m_expression.coeffRef(rowId, colId); 176 inline const Scalar& coeffRef(Index rowId, Index colId) const 178 return m_expression.derived().coeffRef(rowId, colId);
|
D | PlainObjectBase.h | 160 EIGEN_STRONG_INLINE const Scalar& coeff(Index rowId, Index colId) const 163 return m_storage.data()[colId + rowId * m_storage.cols()]; 165 return m_storage.data()[rowId + colId * m_storage.rows()]; 183 EIGEN_STRONG_INLINE Scalar& coeffRef(Index rowId, Index colId) 186 return m_storage.data()[colId + rowId * m_storage.cols()]; 188 return m_storage.data()[rowId + colId * m_storage.rows()]; 204 EIGEN_STRONG_INLINE const Scalar& coeffRef(Index rowId, Index colId) const 207 return m_storage.data()[colId + rowId * m_storage.cols()]; 209 return m_storage.data()[rowId + colId * m_storage.rows()]; 222 EIGEN_STRONG_INLINE PacketScalar packet(Index rowId, Index colId) const [all …]
|
D | Visitor.h | 207 DenseBase<Derived>::minCoeff(IndexType* rowId, IndexType* colId) const 212 if (colId) *colId = minVisitor.col;
|
D | Transpose.h | 139 inline const Scalar& coeffRef(Index rowId, Index colId) const 141 return derived().nestedExpression().coeffRef(colId, rowId);
|
/external/perfetto/src/trace_processor/ |
D | thread_table_unittest.cc | 57 const char* GetColumnAsText(int colId) { in GetColumnAsText() argument 58 return reinterpret_cast<const char*>(sqlite3_column_text(*stmt_, colId)); in GetColumnAsText()
|
D | process_table_unittest.cc | 51 const char* GetColumnAsText(int colId) { in GetColumnAsText() argument 52 return reinterpret_cast<const char*>(sqlite3_column_text(*stmt_, colId)); in GetColumnAsText()
|