Home | History | Annotate | Download | only in Core

Lines Matching defs:RowsAtCompileTime

58     MatrixRows = traits<XprType>::RowsAtCompileTime,
60 RowsAtCompileTime = MatrixRows == 0 ? 0 : BlockRows,
63 : RowsAtCompileTime != Dynamic ? int(RowsAtCompileTime)
74 InnerSize = IsRowMajor ? int(ColsAtCompileTime) : int(RowsAtCompileTime),
85 FlagsLinearAccessBit = (RowsAtCompileTime == 1 || ColsAtCompileTime == 1 || (InnerPanel && (traits<XprType>::Flags&LinearAccessBit))) ? LinearAccessBit : 0,
119 ||((BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) && i<xpr.cols())));
127 EIGEN_STATIC_ASSERT(RowsAtCompileTime!=Dynamic && ColsAtCompileTime!=Dynamic,THIS_METHOD_IS_ONLY_FOR_FIXED_SIZE)
139 eigen_assert((RowsAtCompileTime==Dynamic || RowsAtCompileTime==blockRows)
183 // and it is a column if and only if BlockRows==XprType::RowsAtCompileTime and BlockCols==1,
187 m_startCol( (BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) ? i : 0),
233 .coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
234 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
240 .coeffRef(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
241 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
247 .coeff(m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
248 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
269 (m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
270 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0));
277 (m_startRow.value() + (RowsAtCompileTime == 1 ? 0 : index),
278 m_startCol.value() + (RowsAtCompileTime == 1 ? index : 0), val);
306 const internal::variable_if_dynamic<Index, XprType::RowsAtCompileTime == 1 ? 0 : Dynamic> m_startRow;
308 const internal::variable_if_dynamic<Index, RowsAtCompileTime> m_blockRows;
329 (BlockRows==XprType::RowsAtCompileTime) && (BlockCols==1) ? i : 0)),