Home | History | Annotate | Download | only in Core

Lines Matching refs:RowsAtCompileTime

26     MatrixRows = traits<XprType>::RowsAtCompileTime,
28 RowsAtCompileTime = MatrixRows == 0 ? 0 : BlockRows,
31 : RowsAtCompileTime != Dynamic ? int(RowsAtCompileTime)
42 InnerSize = IsRowMajor ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
122 ||((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && i<xpr.cols())));
131 EIGEN_STATIC_ASSERT(RowsAtCompileTime!=Dynamic && ColsAtCompileTime!=Dynamic,THIS_METHOD_IS_ONLY_FOR_FIXED_SIZE)
144 eigen_assert((RowsAtCompileTime==Dynamic || RowsAtCompileTime==blockRows)
191 // and it is a column if and only if BlockRows==XprType::RowsAtCompileTime and BlockCols==1,
195 m_startCol( (BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) ? i : 0),
244 return m_xpr.coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
245 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
251 return m_xpr.coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
252 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
258 return m_xpr.coeff(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
259 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
278 (m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
279 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
286 (m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
287 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0), val);
321 const internal::variable_if_dynamic<StorageIndex, (XprType::RowsAtCompileTime == 1 && BlockRows==1) ? 0 : Dynamic> m_startRow;
323 const internal::variable_if_dynamic<StorageIndex, RowsAtCompileTime> m_blockRows;
348 || ((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && ( XprTypeIsRowMajor)) ? xpr.innerStride() : xpr.outerStride()),
353 m_startCol( (BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) ? i : 0)
443 const internal::variable_if_dynamic<StorageIndex, (XprType::RowsAtCompileTime == 1 && BlockRows==1) ? 0 : Dynamic> m_startRow;