/external/eigen/Eigen/src/Core/products/ |
TriangularMatrixVector_MKL.h | 53 static void run(Index _rows, Index _cols, const Scalar* _lhs, Index lhsStride, \ 56 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 61 static void run(Index _rows, Index _cols, const Scalar* _lhs, Index lhsStride, \ 64 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 84 static void run(Index _rows, Index _cols, const EIGTYPE* _lhs, Index lhsStride, \ 89 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); \ 92 Index size = (std::min)(_rows,_cols); \ 93 Index rows = IsLower ? _rows : size; \ 169 static void run(Index _rows, Index _cols, const EIGTYPE* _lhs, Index lhsStride, \ 174 _rows, _cols, _lhs, lhsStride, _rhs, rhsIncr, _res, resIncr, alpha); [all...] |
TriangularMatrixMatrix_MKL.h | 59 static inline void run(Index _rows, Index _cols, Index _depth, const Scalar* _lhs, Index lhsStride,\ 64 _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ 95 Index _rows, Index _cols, Index _depth, \ 101 Index diagSize = (std::min)(_rows,_depth); \ 102 Index rows = IsLower ? _rows : diagSize; \ 118 _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); \ 125 gemm_blocking_space<ColMajor,EIGTYPE,EIGTYPE,Dynamic,Dynamic,Dynamic> gemm_blocking(_rows,_cols,_depth); \ 209 Index _rows, Index _cols, Index _depth, \ 216 Index rows = _rows; \ 232 _rows, _cols, _depth, _lhs, lhsStride, _rhs, rhsStride, res, resStride, alpha, blocking); [all...] |
TriangularMatrixVector.h | 29 static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 35 ::run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 39 Index size = (std::min)(_rows,_cols); 40 Index rows = IsLower ? _rows : (std::min)(_rows,_cols); 41 Index cols = IsLower ? (std::min)(_rows,_cols) : _cols; 97 static EIGEN_DONT_INLINE void run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 103 ::run(Index _rows, Index _cols, const LhsScalar* _lhs, Index lhsStride, 107 Index diagSize = (std::min)(_rows,_cols); 108 Index rows = IsLower ? _rows : diagSize [all...] |
TriangularMatrixMatrix.h | 95 Index _rows, Index _cols, Index _depth, 108 Index _rows, Index _cols, Index _depth, 115 Index diagSize = (std::min)(_rows,_depth); 116 Index rows = IsLower ? _rows : diagSize; 236 Index _rows, Index _cols, Index _depth, 249 Index _rows, Index _cols, Index _depth, 257 Index rows = _rows;
|
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
RotationBase.h | 61 template<typename _Scalar, int _Rows, int _Cols, int _Storage, int _MaxRows, int _MaxCols> 63 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols> 74 template<typename _Scalar, int _Rows, int _Cols, int _Storage, int _MaxRows, int _MaxCols> 76 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>& 77 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>
|
/external/eigen/Eigen/src/Core/ |
DenseStorage.h | 118 template<typename T, int Size, int _Rows, int _Cols, int _Options> class DenseStorage; 121 template<typename T, int Size, int _Rows, int _Cols, int _Options> class DenseStorage 130 static inline DenseIndex rows(void) {return _Rows;} 139 template<typename T, int _Rows, int _Cols, int _Options> class DenseStorage<T, 0, _Rows, _Cols, _Options> 146 static inline DenseIndex rows(void) {return _Rows;} 158 template<typename T, int _Rows, int _Options> class DenseStorage<T, 0, _Rows, Dynamic, _Options> 205 template<typename T, int Size, int _Rows, int _Options> class DenseStorage<T, Size, _Rows, Dynamic, _Options [all...] |
BandMatrix.h | 177 template<typename _Scalar, int _Rows, int _Cols, int _Supers, int _Subs, int _Options> 178 struct traits<BandMatrix<_Scalar,_Rows,_Cols,_Supers,_Subs,_Options> > 185 RowsAtCompileTime = _Rows, 187 MaxRowsAtCompileTime = _Rows, 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> > 247 RowsAtCompileTime = _Rows, 249 MaxRowsAtCompileTime = _Rows, 260 template<typename _CoefficientsType,int _Rows, int _Cols, int _Supers, int _Subs,int _Options [all...] |
Matrix.h | 29 * \tparam _Rows Number of rows, or \b Dynamic 37 * \tparam _MaxRows Maximum number of rows. Defaults to \a _Rows (\ref maxrows "note"). 97 * are the dimensions of the original matrix, while _Rows and _Cols are Dynamic.</dd> 105 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 106 struct traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 113 RowsAtCompileTime = _Rows, 117 Flags = compute_matrix_flags<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>::ret, 126 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 128 : public PlainObjectBase<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
|
Array.h | 33 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 34 struct traits<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > : traits<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 37 typedef ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > XprBase; 41 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 43 : public PlainObjectBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> >
|
Map.h | 176 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 177 inline Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> 183 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 184 inline Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols>
|
PlainObjectBase.h | 74 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 75 struct dense_xpr_base_dispatcher_for_doxygen<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 76 : public MatrixBase<Matrix<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > {}; 78 template<typename _Scalar, int _Rows, int _Cols, int _Options, int _MaxRows, int _MaxCols> 79 struct dense_xpr_base_dispatcher_for_doxygen<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > 80 : public ArrayBase<Array<_Scalar, _Rows, _Cols, _Options, _MaxRows, _MaxCols> > {}; [all...] |
/external/eigen/Eigen/src/Core/util/ |
ForwardDeclarations.h | 52 template<typename _Scalar, int _Rows, int _Cols, 60 ( (_Rows==1 && _Cols!=1) ? RowMajor 61 : !(_Cols==1 && _Rows!=1) ? EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION 64 ( (_Rows==1 && _Cols!=1) ? RowMajor 65 : (_Cols==1 && _Rows!=1) ? ColMajor 68 int _MaxRows = _Rows, 193 template<typename _Scalar, int _Rows, int _Cols, 201 ( (_Rows==1 && _Cols!=1) ? RowMajor 202 : !(_Cols==1 && _Rows!=1) ? EIGEN_DEFAULT_MATRIX_STORAGE_ORDER_OPTION 205 ( (_Rows==1 && _Cols!=1) ? RowMajo [all...] |
XprHelper.h | 107 template<typename _Scalar, int _Rows, int _Cols, 109 ( (_Rows==1 && _Cols!=1) ? RowMajor 110 : (_Cols==1 && _Rows!=1) ? ColMajor 112 int _MaxRows = _Rows, 117 IsColVector = _Cols==1 && _Rows!=1, 118 IsRowVector = _Rows==1 && _Cols!=1, 124 typedef Matrix<_Scalar, _Rows, _Cols, Options, _MaxRows, _MaxCols> type; 161 template<int _Rows, int _Cols> struct size_at_compile_time 163 enum { ret = (_Rows==Dynamic || _Cols==Dynamic) ? Dynamic : _Rows * _Cols } [all...] |
/external/eigen/test/eigen2/ |
eigen2_swap.cpp | 19 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;
|
eigen2_submatrices.cpp | 16 template<typename Scalar, int _Rows, int _Cols> struct CheckMinor 18 typedef Matrix<Scalar, _Rows, _Cols> MatrixType;
|
/external/eigen/test/ |
swap.cpp | 19 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/Eigen/src/Geometry/ |
RotationBase.h | 138 template<typename _Scalar, int _Rows, int _Cols, int _Storage, int _MaxRows, int _MaxCols> 140 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols> 151 template<typename _Scalar, int _Rows, int _Cols, int _Storage, int _MaxRows, int _MaxCols> 153 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>& 154 Matrix<_Scalar, _Rows, _Cols, _Storage, _MaxRows, _MaxCols>
|
/external/jdiff/ |
xerces.jar | |