/external/eigen/Eigen/src/Core/ |
DiagonalMatrix.h | 30 MaxRowsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime, 31 MaxColsAtCompileTime = DiagonalVectorType::MaxSizeAtCompileTime, 38 typedef DiagonalMatrix<Scalar,DiagonalVectorType::SizeAtCompileTime,DiagonalVectorType::MaxSizeAtCompileTime> PlainObject; 115 * \param MaxSizeAtCompileTime the dimension of the matrix, or Dynamic. This parameter is optional and defaults 122 template<typename _Scalar, int SizeAtCompileTime, int MaxSizeAtCompileTime> 123 struct traits<DiagonalMatrix<_Scalar,SizeAtCompileTime,MaxSizeAtCompileTime> > 124 : traits<Matrix<_Scalar,SizeAtCompileTime,SizeAtCompileTime,0,MaxSizeAtCompileTime,MaxSizeAtCompileTime> > 126 typedef Matrix<_Scalar,SizeAtCompileTime,1,0,MaxSizeAtCompileTime,1> DiagonalVectorType; 134 template<typename _Scalar, int SizeAtCompileTime, int MaxSizeAtCompileTime> [all...] |
Transpositions.h | 21 * \param MaxSizeAtCompileTime the maximum number of transpositions, or Dynamic. This optional parameter defaults to SizeAtCompileTime. Most of the time, you should not have to specify it. 147 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType> 148 struct traits<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType> > 151 typedef Matrix<Index, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1> IndicesType; 155 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType> 156 class Transpositions : public TranspositionsBase<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType> > 218 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType, int _PacketAccess> 219 struct traits<Map<Transpositions<SizeAtCompileTime,MaxSizeAtCompileTime,IndexType>,_PacketAccess> > 222 typedef Map<const Matrix<Index,SizeAtCompileTime,1,0,MaxSizeAtCompileTime,1>, _PacketAccess> IndicesType; 226 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType, int PacketAccess [all...] |
PermutationMatrix.h | 73 typedef PermutationMatrix<IndicesType::SizeAtCompileTime,IndicesType::MaxSizeAtCompileTime,Index> 293 * \param MaxSizeAtCompileTime the maximum number of rows/cols, or Dynamic. This optional parameter defaults to SizeAtCompileTime. Most of the time, you should not have to specify it. 302 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType> 303 struct traits<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType> > 304 : traits<Matrix<IndexType,SizeAtCompileTime,SizeAtCompileTime,0,MaxSizeAtCompileTime,MaxSizeAtCompileTime> > 307 typedef Matrix<IndexType, SizeAtCompileTime, 1, 0, MaxSizeAtCompileTime, 1> IndicesType; 311 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType> 312 class PermutationMatrix : public PermutationBase<PermutationMatrix<SizeAtCompileTime, MaxSizeAtCompileTime, IndexType> > 416 template<int SizeAtCompileTime, int MaxSizeAtCompileTime, typename IndexType, int _PacketAccess [all...] |
Assign_MKL.h | 55 InnerMaxSize = int(Dst::IsVectorAtCompileTime) ? int(Dst::MaxSizeAtCompileTime) 58 MaxSizeAtCompileTime = Dst::SizeAtCompileTime, 63 VmlSize = MightLinearize ? MaxSizeAtCompileTime : InnerMaxSize,
|
PlainObjectBase.h | 29 template<int MaxSizeAtCompileTime> struct check_rows_cols_for_overflow { 107 using Base::MaxSizeAtCompileTime; 126 DenseStorage<Scalar, Base::MaxSizeAtCompileTime, Base::RowsAtCompileTime, Base::ColsAtCompileTime, Options> m_storage; 242 internal::check_rows_cols_for_overflow<MaxSizeAtCompileTime>::run(nbRows, nbCols); 249 internal::check_rows_cols_for_overflow<MaxSizeAtCompileTime>::run(nbRows, nbCols); 268 eigen_assert(((SizeAtCompileTime == Dynamic && (MaxSizeAtCompileTime==Dynamic || size<=MaxSizeAtCompileTime)) || SizeAtCompileTime == size) && size>=0); 318 internal::check_rows_cols_for_overflow<MaxSizeAtCompileTime>::run(other.rows(), other.cols()); 463 internal::check_rows_cols_for_overflow<MaxSizeAtCompileTime>::run(other.derived().rows(), other.derived().cols()); 690 internal::check_rows_cols_for_overflow<Derived::MaxSizeAtCompileTime>::run(rows, cols) [all...] |
ArrayBase.h | 64 using Base::MaxSizeAtCompileTime;
|
Diagonal.h | 48 MaxRowsAtCompileTime = int(MatrixType::MaxSizeAtCompileTime) == Dynamic ? Dynamic
|
MapBase.h | 56 using Base::MaxSizeAtCompileTime;
|
Assign.h | 39 InnerMaxSize = int(Derived::IsVectorAtCompileTime) ? int(Derived::MaxSizeAtCompileTime) 42 MaxSizeAtCompileTime = Derived::SizeAtCompileTime, 54 && (DstIsAligned || MaxSizeAtCompileTime == Dynamic),
|
GeneralProduct.h | 436 gemv_static_vector_if<ResScalar,Dest::SizeAtCompileTime,Dest::MaxSizeAtCompileTime,MightCannotUseDest> static_dest; 506 gemv_static_vector_if<RhsScalar,_ActualRhsType::SizeAtCompileTime,_ActualRhsType::MaxSizeAtCompileTime,!DirectlyUseRhs> static_rhs;
|
DenseBase.h | 129 * \sa RowsAtCompileTime, MaxColsAtCompileTime, MaxSizeAtCompileTime 140 * \sa ColsAtCompileTime, MaxRowsAtCompileTime, MaxSizeAtCompileTime 143 MaxSizeAtCompileTime = (internal::size_at_compile_time<internal::traits<Derived>::MaxRowsAtCompileTime,
|
MatrixBase.h | 66 using Base::MaxSizeAtCompileTime;
|
/external/eigen/Eigen/src/Core/util/ |
Macros.h | 362 MaxSizeAtCompileTime = Base::MaxSizeAtCompileTime, \ 381 MaxSizeAtCompileTime = Base::MaxSizeAtCompileTime, \
|
ForwardDeclarations.h | 97 template<typename _Scalar, int SizeAtCompileTime, int MaxSizeAtCompileTime=SizeAtCompileTime> class DiagonalMatrix; 100 template<int SizeAtCompileTime, int MaxSizeAtCompileTime = SizeAtCompileTime, typename IndexType=int> class PermutationMatrix; 101 template<int SizeAtCompileTime, int MaxSizeAtCompileTime = SizeAtCompileTime, typename IndexType=int> class Transpositions;
|
/external/eigen/unsupported/Eigen/src/Skyline/ |
SkylineMatrixBase.h | 56 MaxSizeAtCompileTime = (internal::size_at_compile_time<MaxRowsAtCompileTime,
|
/external/eigen/Eigen/src/Core/products/ |
SelfadjointMatrixVector.h | 209 internal::gemv_static_vector_if<ResScalar,Dest::SizeAtCompileTime,Dest::MaxSizeAtCompileTime,!EvalToDest> static_dest; 210 internal::gemv_static_vector_if<RhsScalar,_ActualRhsType::SizeAtCompileTime,_ActualRhsType::MaxSizeAtCompileTime,!UseRhs> static_rhs;
|
SelfadjointProduct.h | 68 internal::gemv_static_vector_if<Scalar,OtherType::SizeAtCompileTime,OtherType::MaxSizeAtCompileTime,!UseOtherDirectly> static_other;
|
GeneralMatrixMatrixTriangular.h | 218 internal::gemv_static_vector_if<Scalar,Lhs::SizeAtCompileTime,Lhs::MaxSizeAtCompileTime,!UseLhsDirectly> static_lhs; 223 internal::gemv_static_vector_if<Scalar,Rhs::SizeAtCompileTime,Rhs::MaxSizeAtCompileTime,!UseRhsDirectly> static_rhs;
|
TriangularMatrixVector.h | 246 gemv_static_vector_if<ResScalar,Dest::SizeAtCompileTime,Dest::MaxSizeAtCompileTime,MightCannotUseDest> static_dest; 317 gemv_static_vector_if<RhsScalar,_ActualRhsType::SizeAtCompileTime,_ActualRhsType::MaxSizeAtCompileTime,!DirectlyUseRhs> static_rhs;
|
/external/eigen/Eigen/src/SparseCore/ |
SparseMatrixBase.h | 72 MaxSizeAtCompileTime = (internal::size_at_compile_time<MaxRowsAtCompileTime,
|