OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MaxCols
(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
64
MaxCols
= _Rhs::MaxColsAtCompileTime,
78
cols_select = product_size_category<Cols,
MaxCols
>::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))
218
MaxCols
= traits<T>::MaxColsAtCompileTime
223
(MaxRows==1&&
MaxCols
!=1) ? RowMajor : ColMajor,
225
MaxCols
236
MaxCols
= traits<T>::MaxColsAtCompileTime
241
(
MaxCols
==1&&MaxRows!=1) ? RowMajor : ColMajor,
243
MaxCols
/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
78
static const int
MaxCols
= Traits::MaxColsAtCompileTime;
81
typedef Matrix<ComplexScalar, Rows, Cols, Options, MaxRows,
MaxCols
> ComplexMatrix;
Completed in 38 milliseconds