Home
last modified time | relevance | path

Searched refs:colStride (Results 1 – 4 of 4) sorted by relevance

/external/eigen/Eigen/src/Core/
DMapBase.h72 using Base::colStride;
92 return m_data[col * colStride() + row * rowStride()]; in coeff()
103 return this->m_data[col * colStride() + row * rowStride()]; in coeffRef()
116 (m_data + (col * colStride() + row * rowStride())); in packet()
190 using Base::colStride;
203 return this->m_data[col * colStride() + row * rowStride()]; in coeffRef()
216 (this->m_data + (col * colStride() + row * rowStride()), x); in writePacket()
DDenseCoeffsBase.h259 void colStride();
618 inline Index colStride() const in colStride() function
689 inline Index colStride() const in colStride() function
DDenseBase.h87 using Base::colStride;
/external/eigen/test/
Dblock.cpp160 Index colStride = m.colStride(); in compare_using_data_and_stride() local
165 VERIFY(m.coeff(i,j) == data[i*rowStride + j*colStride]); in compare_using_data_and_stride()