HomeSort by relevance Sort by last modified time
    Searched refs:MaxRows (Results 1 - 5 of 5) sorted by null

  /external/eigen/Eigen/src/Core/
NumTraits.h 124 template<typename Scalar, int Rows, int Cols, int Options, int MaxRows, int MaxCols>
125 struct NumTraits<Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> >
127 typedef Array<Scalar, Rows, Cols, Options, MaxRows, MaxCols> ArrayType;
129 typedef Array<RealScalar, Rows, Cols, Options, MaxRows, MaxCols> Real;
131 typedef Array<NonIntegerScalar, Rows, Cols, Options, MaxRows, MaxCols> NonInteger;
GeneralProduct.h 62 MaxRows = _Lhs::MaxRowsAtCompileTime,
77 rows_select = product_size_category<Rows,MaxRows>::value,
  /external/eigen/Eigen/src/Core/util/
XprHelper.h 105 template<typename Scalar, int Rows, int Cols, int Options, int MaxRows, int MaxCols>
110 is_dynamic_size_storage = MaxRows==Dynamic || MaxCols==Dynamic,
117 ((!is_dynamic_size_storage) && (((MaxCols*MaxRows*int(sizeof(Scalar))) % 16) == 0))
217 MaxRows = traits<T>::MaxRowsAtCompileTime,
223 (MaxRows==1&&MaxCols!=1) ? RowMajor : ColMajor,
224 MaxRows,
235 MaxRows = traits<T>::MaxRowsAtCompileTime,
241 (MaxCols==1&&MaxRows!=1) ? RowMajor : ColMajor,
242 MaxRows,
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 237 template<int StorageOrder, typename LhsScalar, typename RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor=1,
238 bool FiniteAtCompileTime = MaxRows!=Dynamic && MaxCols!=Dynamic && MaxDepth != Dynamic> class gemm_blocking_space;
270 template<int StorageOrder, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor>
271 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, true>
278 ActualRows = Transpose ? MaxCols : MaxRows,
279 ActualCols = Transpose ? MaxRows : MaxCols
312 template<int StorageOrder, typename _LhsScalar, typename _RhsScalar, int MaxRows, int MaxCols, int MaxDepth, int KcFactor>
313 class gemm_blocking_space<StorageOrder,_LhsScalar,_RhsScalar,MaxRows, MaxCols, MaxDepth, KcFactor, false>
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 77 static const int MaxRows = Traits::MaxRowsAtCompileTime;
81 typedef Matrix<ComplexScalar, Rows, Cols, Options, MaxRows, MaxCols> ComplexMatrix;

Completed in 1411 milliseconds