Home
last modified time | relevance | path

Searched refs:_Options (Results 1 – 25 of 28) sorted by relevance

12

/external/eigen/Eigen/src/Core/
DDenseStorage.h180 template<typename T, int Size, int _Rows, int _Cols, int _Options> class DenseStorage;
183 template<typename T, int Size, int _Rows, int _Cols, int _Options> class DenseStorage
185 internal::plain_array<T,Size,_Options> m_data;
220 template<typename T, int _Rows, int _Cols, int _Options> class DenseStorage<T, 0, _Rows, _Cols, _Op…
238 template<typename T, int _Options> class DenseStorage<T, 0, Dynamic, Dynamic, _Options>
239 : public DenseStorage<T, 0, 0, 0, _Options> { };
241 template<typename T, int _Rows, int _Options> class DenseStorage<T, 0, _Rows, Dynamic, _Options>
242 : public DenseStorage<T, 0, 0, 0, _Options> { };
244 template<typename T, int _Cols, int _Options> class DenseStorage<T, 0, Dynamic, _Cols, _Options>
245 : public DenseStorage<T, 0, 0, 0, _Options> { };
[all …]
DBandMatrix.h177 template<typename _Scalar, int _Rows, int _Cols, int _Supers, int _Subs, int _Options>
178 struct traits<BandMatrix<_Scalar,_Rows,_Cols,_Supers,_Subs,_Options> >
192 Options = _Options,
236 template<typename _CoefficientsType,int _Rows, int _Cols, int _Supers, int _Subs,int _Options>
239 template<typename _CoefficientsType,int _Rows, int _Cols, int _Supers, int _Subs,int _Options>
240 struct traits<BandMatrixWrapper<_CoefficientsType,_Rows,_Cols,_Supers,_Subs,_Options> >
254 Options = _Options,
260 template<typename _CoefficientsType,int _Rows, int _Cols, int _Supers, int _Subs,int _Options>
261 …r : public BandMatrixBase<BandMatrixWrapper<_CoefficientsType,_Rows,_Cols,_Supers,_Subs,_Options> >
333 template<typename _Scalar, int _Rows, int _Cols, int _Supers, int _Subs, int _Options>
[all …]
DMatrix.h17 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
18 struct traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
24 row_major_bit = _Options&RowMajor ? RowMajorBit : 0,
28 actual_alignment = ((_Options&DontAlign)==0) ? default_alignment : 0,
43 Flags = compute_matrix_flags<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::ret,
44 Options = _Options,
177 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
179 : public PlainObjectBase<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
188 enum { Options = _Options };
DArray.h16 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
17 … traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Row…
20 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase;
44 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
46 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
53 enum { Options = _Options };
DRef.h17 template<typename _PlainObjectType, int _Options, typename _StrideType>
18 struct traits<Ref<_PlainObjectType, _Options, _StrideType> >
19 : public traits<Map<_PlainObjectType, _Options, _StrideType> >
24 Options = _Options,
25 Flags = traits<Map<_PlainObjectType, _Options, _StrideType> >::Flags | NestByRefBit,
26 Alignment = traits<Map<_PlainObjectType, _Options, _StrideType> >::Alignment
DPlainObjectBase.h73 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
74 struct dense_xpr_base_dispatcher<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
77 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
78 struct dense_xpr_base_dispatcher<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
/external/eigen/Eigen/src/Geometry/
DParametrizedLine.h29 template <typename _Scalar, int _AmbientDim, int _Options>
36 Options = _Options
144 template <typename _Scalar, int _AmbientDim, int _Options>
146 EIGEN_DEVICE_FUNC inline ParametrizedLine<_Scalar, _AmbientDim,_Options>::ParametrizedLine(const Hy… in ParametrizedLine()
155 template <typename _Scalar, int _AmbientDim, int _Options>
156 EIGEN_DEVICE_FUNC inline typename ParametrizedLine<_Scalar, _AmbientDim,_Options>::VectorType
157 ParametrizedLine<_Scalar, _AmbientDim,_Options>::pointAt(const _Scalar& t) const in pointAt()
164 template <typename _Scalar, int _AmbientDim, int _Options>
166 EIGEN_DEVICE_FUNC inline _Scalar ParametrizedLine<_Scalar, _AmbientDim,_Options>::intersectionParam… in intersectionParameter()
176 template <typename _Scalar, int _AmbientDim, int _Options>
[all …]
DQuaternion.h213 template<typename _Scalar,int _Options>
214 struct traits<Quaternion<_Scalar,_Options> >
216 typedef Quaternion<_Scalar,_Options> PlainObject;
218 typedef Matrix<_Scalar,4,1,_Options> Coefficients;
226 template<typename _Scalar, int _Options>
227 class Quaternion : public QuaternionBase<Quaternion<_Scalar,_Options> >
230 typedef QuaternionBase<Quaternion<_Scalar,_Options> > Base;
294 EIGEN_STATIC_ASSERT( (_Options & DontAlign) == _Options,
312 template<typename _Scalar, int _Options>
313 …struct traits<Map<Quaternion<_Scalar>, _Options> > : traits<Quaternion<_Scalar, (int(_Options)&Ali…
[all …]
DHyperplane.h33 template <typename _Scalar, int _AmbientDim, int _Options>
40 Options = _Options
/external/eigen/unsupported/Eigen/src/SparseExtra/
DDynamicSparseMatrix.h36 template<typename _Scalar, int _Options, typename _StorageIndex>
37 struct traits<DynamicSparseMatrix<_Scalar, _Options, _StorageIndex> >
48 Flags = _Options | NestByRefBit | LvalueBit,
55 template<typename _Scalar, int _Options, typename _StorageIndex>
57 : public SparseMatrixBase<DynamicSparseMatrix<_Scalar, _Options, _StorageIndex> >
70 Options = _Options
325 template<typename Scalar, int _Options, typename _StorageIndex>
326 class DynamicSparseMatrix<Scalar,_Options,_StorageIndex>::InnerIterator : public SparseVector<Scala…
328 typedef typename SparseVector<Scalar,_Options,_StorageIndex>::InnerIterator Base;
342 template<typename Scalar, int _Options, typename _StorageIndex>
[all …]
DBlockOfDynamicSparseMatrix.h25 template<typename _Scalar, int _Options, typename _Index, int Size>
26 class SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Size>
27 …: public SparseMatrixBase<SparseInnerVectorSet<DynamicSparseMatrix<_Scalar, _Options, _Index>, Siz…
29 typedef DynamicSparseMatrix<_Scalar, _Options, _Index> MatrixType;
DBlockSparseMatrix.h54 template<typename _Scalar, int _BlockAtCompileTime=Dynamic, int _Options=ColMajor, typename _Storag…
59 template<typename _Scalar, int _BlockAtCompileTime, int _Options, typename _Index>
60 struct traits<BlockSparseMatrix<_Scalar,_BlockAtCompileTime,_Options, _Index> >
72 Flags = _Options | NestByRefBit | LvalueBit,
283 template<typename _Scalar, int _BlockAtCompileTime, int _Options, typename _StorageIndex>
284 … : public SparseMatrixBase<BlockSparseMatrix<_Scalar,_BlockAtCompileTime, _Options,_StorageIndex> >
290 … internal::ref_selector<BlockSparseMatrix<_Scalar, _BlockAtCompileTime, _Options, _StorageIndex> >…
293 Options = _Options,
971 template<typename _Scalar, int _BlockAtCompileTime, int _Options, typename _StorageIndex>
972 class BlockSparseMatrix<_Scalar, _BlockAtCompileTime, _Options, _StorageIndex>::BlockInnerIterator
[all …]
/external/eigen/Eigen/src/SparseCore/
DSparseRedux.h28 template<typename _Scalar, int _Options, typename _Index>
29 typename internal::traits<SparseMatrix<_Scalar,_Options,_Index> >::Scalar
30 SparseMatrix<_Scalar,_Options,_Index>::sum() const in sum()
39 template<typename _Scalar, int _Options, typename _Index>
40 typename internal::traits<SparseVector<_Scalar,_Options, _Index> >::Scalar
41 SparseVector<_Scalar,_Options,_Index>::sum() const in sum()
DSparseMatrix.h46 template<typename _Scalar, int _Options, typename _StorageIndex>
47 struct traits<SparseMatrix<_Scalar, _Options, _StorageIndex> >
58 Flags = _Options | NestByRefBit | LvalueBit | CompressedAccessBit,
63 template<typename _Scalar, int _Options, typename _StorageIndex, int DiagIndex>
64 struct traits<Diagonal<SparseMatrix<_Scalar, _Options, _StorageIndex>, DiagIndex> >
66 typedef SparseMatrix<_Scalar, _Options, _StorageIndex> MatrixType;
84 template<typename _Scalar, int _Options, typename _StorageIndex, int DiagIndex>
85 struct traits<Diagonal<const SparseMatrix<_Scalar, _Options, _StorageIndex>, DiagIndex> >
86 : public traits<Diagonal<SparseMatrix<_Scalar, _Options, _StorageIndex>, DiagIndex> >
95 template<typename _Scalar, int _Options, typename _StorageIndex>
[all …]
DMappedSparseMatrix.h52 template<typename _Scalar, int _Options, typename _StorageIndex>
53 struct evaluator<MappedSparseMatrix<_Scalar,_Options,_StorageIndex> >
54 : evaluator<SparseCompressedBase<MappedSparseMatrix<_Scalar,_Options,_StorageIndex> > >
56 typedef MappedSparseMatrix<_Scalar,_Options,_StorageIndex> XprType;
DSparseVector.h29 template<typename _Scalar, int _Options, typename _StorageIndex>
30 struct traits<SparseVector<_Scalar, _Options, _StorageIndex> >
37 IsColVector = (_Options & RowMajorBit) ? 0 : 1,
43 …Flags = _Options | NestByRefBit | LvalueBit | (IsColVector ? 0 : RowMajorBit) | CompressedAccessBi…
63 template<typename _Scalar, int _Options, typename _StorageIndex>
65 : public SparseCompressedBase<SparseVector<_Scalar, _Options, _StorageIndex> >
78 Options = _Options
400 … EIGEN_STATIC_ASSERT((_Options&(ColMajor|RowMajor))==Options,INVALID_MATRIX_TEMPLATE_PARAMETERS);
409 template<typename _Scalar, int _Options, typename _Index>
410 struct evaluator<SparseVector<_Scalar,_Options,_Index> >
[all …]
DSparseRef.h23 template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
24 struct traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
29 Options = _Options,
43 template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
44 struct traits<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
45 : public traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
52 template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
53 struct traits<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
58 Options = _Options,
71 template<typename MatScalar, int MatOptions, typename MatIndex, int _Options, typename _StrideType>
[all …]
DSparseBlock.h286 template<typename _Scalar, int _Options, typename _StorageIndex, int BlockRows, int BlockCols>
287 class BlockImpl<SparseMatrix<_Scalar, _Options, _StorageIndex>,BlockRows,BlockCols,true,Sparse>
288 …: public internal::sparse_matrix_block_impl<SparseMatrix<_Scalar, _Options, _StorageIndex>,BlockRo…
292 typedef SparseMatrix<_Scalar, _Options, _StorageIndex> SparseMatrixType;
305 template<typename _Scalar, int _Options, typename _StorageIndex, int BlockRows, int BlockCols>
306 class BlockImpl<const SparseMatrix<_Scalar, _Options, _StorageIndex>,BlockRows,BlockCols,true,Spars…
307 …: public internal::sparse_matrix_block_impl<const SparseMatrix<_Scalar, _Options, _StorageIndex>,B…
311 typedef const SparseMatrix<_Scalar, _Options, _StorageIndex> SparseMatrixType;
580 template<typename _Scalar, int _Options, typename _StorageIndex, int BlockRows, int BlockCols>
581 struct unary_evaluator<Block<SparseMatrix<_Scalar, _Options, _StorageIndex>,BlockRows,BlockCols,tru…
[all …]
DSparseUtil.h100 enum { _Options = ((Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor };
102 typedef SparseMatrix<_Scalar, _Options, _StorageIndex> type;
115 enum { _Options = ((evaluator<T>::Flags&RowMajorBit)==RowMajorBit) ? RowMajor : ColMajor };
117 typedef SparseMatrix<_Scalar, _Options, _StorageIndex> type;
/external/eigen/Eigen/src/CholmodSupport/
DCholmodSupport.h57 template<typename _Scalar, int _Options, typename _StorageIndex>
58 cholmod_sparse viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_StorageIndex> > mat)
104 template<typename _Scalar, int _Options, typename _Index>
105 const cholmod_sparse viewAsCholmod(const SparseMatrix<_Scalar,_Options,_Index>& mat)
107 …cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.const_cast_deri…
111 template<typename _Scalar, int _Options, typename _Index>
112 const cholmod_sparse viewAsCholmod(const SparseVector<_Scalar,_Options,_Index>& mat)
114 …cholmod_sparse res = viewAsCholmod(Ref<SparseMatrix<_Scalar,_Options,_Index> >(mat.const_cast_deri…
120 template<typename _Scalar, int _Options, typename _Index, unsigned int UpLo>
121 cholmod_sparse viewAsCholmod(const SparseSelfAdjointView<const SparseMatrix<_Scalar,_Options,_Index…
[all …]
/external/eigen/test/
Dswap.cpp19 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
20 struct other_matrix_type<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
22 typedef Matrix<_Scalar, _Rows, _Cols, _Options^RowMajor, _MaxRows, _MaxCols> type;
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineMatrix.h34 template<typename _Scalar, int _Options>
35 struct traits<SkylineMatrix<_Scalar, _Options> > {
44 Flags = SkylineBit | _Options,
50 template<typename _Scalar, int _Options>
52 : public SkylineMatrixBase<SkylineMatrix<_Scalar, _Options> > {
734 template<typename Scalar, int _Options>
735 class SkylineMatrix<Scalar, _Options>::InnerUpperIterator {
740 m_id(_Options == RowMajor ? mat.m_colStartIndex[outer] : mat.m_rowStartIndex[outer] + 1),
742 …m_end(_Options == RowMajor ? mat.m_colStartIndex[outer + 1] : mat.m_rowStartIndex[outer + 1] + 1) {
796 template<typename Scalar, int _Options>
[all …]
/external/eigen/Eigen/src/Core/util/
DXprHelper.h231 int _Options = AutoAlign |
242 Options = IsColVector ? (_Options | ColMajor) & ~RowMajor
243 : IsRowVector ? (_Options | RowMajor) & ~ColMajor
244 : _Options
333 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
334 struct eval<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense>
336 typedef const Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type;
339 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols>
340 struct eval<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>, Dense>
342 typedef const Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>& type;
DForwardDeclarations.h57 int _Options = AutoAlign |
227 int _Options = AutoAlign |
274 template<typename Scalar,int Dim,int Mode,int _Options=AutoAlign> class Transform;
/external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
DLMqrsolv.h101 template <typename Scalar, int _Options, typename Index>
103 SparseMatrix<Scalar,_Options,Index> &s, in lmqrsolv() argument

12