Home
last modified time | relevance | path

Searched refs:DenseIndex (Results 1 – 25 of 49) sorted by relevance

12

/external/eigen/Eigen/src/Core/
DDenseStorage.h128 inline DenseStorage(DenseIndex,DenseIndex,DenseIndex) {}
130 static inline DenseIndex rows(void) {return _Rows;}
131 static inline DenseIndex cols(void) {return _Cols;}
132 inline void conservativeResize(DenseIndex,DenseIndex,DenseIndex) {}
133 inline void resize(DenseIndex,DenseIndex,DenseIndex) {}
144 inline DenseStorage(DenseIndex,DenseIndex,DenseIndex) {}
146 static inline DenseIndex rows(void) {return _Rows;}
147 static inline DenseIndex cols(void) {return _Cols;}
148 inline void conservativeResize(DenseIndex,DenseIndex,DenseIndex) {}
149 inline void resize(DenseIndex,DenseIndex,DenseIndex) {}
[all …]
DStride.h47 typedef DenseIndex Index;
89 typedef DenseIndex Index;
101 typedef DenseIndex Index;
/external/eigen/unsupported/Eigen/src/Splines/
DSpline.h121 derivatives(Scalar u, DenseIndex order) const;
130 derivatives(Scalar u, DenseIndex order = DerivativeOrder) const;
165 basisFunctionDerivatives(Scalar u, DenseIndex order) const;
174 basisFunctionDerivatives(Scalar u, DenseIndex order = DerivativeOrder) const;
179 DenseIndex degree() const;
185 DenseIndex span(Scalar u) const;
190 …static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex degree, const typename …
204 static BasisVectorType BasisFunctions(Scalar u, DenseIndex degree, const KnotVectorType& knots);
213 DenseIndex Spline<_Scalar, _Dim, _Degree>::Span( in Span()
215 DenseIndex degree, in Span()
[all …]
DSplineFitting.h41 void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots) in KnotAveraging()
45 for (DenseIndex j=1; j<parameters.size()-degree; ++j) in KnotAveraging()
66 const DenseIndex n = pts.cols(); in ChordLengths()
99 static SplineType Interpolate(const PointArrayType& pts, DenseIndex degree);
111 …static SplineType Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& …
116 …SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree, co… in Interpolate()
126 DenseIndex n = pts.cols(); in Interpolate()
128 for (DenseIndex i=1; i<n-1; ++i) in Interpolate()
130 const DenseIndex span = SplineType::Span(knot_parameters[i], degree, knots); in Interpolate()
148 SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree) in Interpolate()
/external/eigen/blas/
Dlevel3_impl.h15DenseIndex, DenseIndex, DenseIndex, const Scalar *, DenseIndex, const Scalar *, DenseIndex, Scalar… in EIGEN_BLAS_FUNC()
23 …func[NOTR | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,ColMajor,fa… in EIGEN_BLAS_FUNC()
24 …func[TR | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,fa… in EIGEN_BLAS_FUNC()
25 …func[ADJ | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,Co… in EIGEN_BLAS_FUNC()
26 …func[NOTR | (TR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,ColMajor,fa… in EIGEN_BLAS_FUNC()
27 …func[TR | (TR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,fa… in EIGEN_BLAS_FUNC()
28 …func[ADJ | (TR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,Co… in EIGEN_BLAS_FUNC()
29 …func[NOTR | (ADJ << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,ColMajor,fa… in EIGEN_BLAS_FUNC()
30 …func[TR | (ADJ << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,fa… in EIGEN_BLAS_FUNC()
31 …func[ADJ | (ADJ << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,Co… in EIGEN_BLAS_FUNC()
[all …]
Dlevel1_impl.h59 DenseIndex ret; in EIGEN_CAT()
70 DenseIndex ret; in EIGEN_CAT()
/external/eigen/unsupported/Eigen/src/Polynomials/
DPolynomialUtils.h31 for(DenseIndex i=poly.size()-2; i>=0; --i ){ in poly_eval_horner()
56 for( DenseIndex i=1; i<poly.size(); ++i ){ in poly_eval()
85 for( DenseIndex i=0; i<poly.size()-1; ++i ){ in cauchy_max_bound()
104 DenseIndex i=0; in cauchy_min_bound()
111 for( DenseIndex j=i+1; j<poly.size(); ++j ){ in cauchy_min_bound()
134 for( DenseIndex i=1; i< rv.size(); ++i ) in roots_to_monicPolynomial()
136 for( DenseIndex j=i+1; j>0; --j ){ poly[j] = poly[j-1] - rv[i]*poly[j]; } in roots_to_monicPolynomial()
/external/eigen/Eigen/src/Core/products/
DGeneralMatrixMatrix.h250 DenseIndex m_mc;
251 DenseIndex m_nc;
252 DenseIndex m_kc;
260 inline DenseIndex mc() const { return m_mc; }
261 inline DenseIndex nc() const { return m_nc; }
262 inline DenseIndex kc() const { return m_kc; }
295 gemm_blocking_space(DenseIndex /*rows*/, DenseIndex /*cols*/, DenseIndex /*depth*/)
324 DenseIndex m_sizeA;
325 DenseIndex m_sizeB;
326 DenseIndex m_sizeW;
[all …]
/external/eigen/unsupported/Eigen/src/NonLinearOptimization/
Dfdjac1.h6 DenseIndex fdjac1( in fdjac1()
11 DenseIndex ml, DenseIndex mu, in fdjac1()
17 typedef DenseIndex Index; in fdjac1()
Dr1mpyq.h8 void r1mpyq(DenseIndex m, DenseIndex n, Scalar *a, const std::vector<JacobiRotation<Scalar> > &v_gi… in r1mpyq()
10 typedef DenseIndex Index; in r1mpyq()
Drwupdt.h12 typedef DenseIndex Index; in rwupdt()
Dchkder.h23 typedef DenseIndex Index; in chkder()
Dlmpar.h17 typedef DenseIndex Index; in lmpar()
175 typedef DenseIndex Index; in lmpar2()
/external/eigen/failtest/
Dmap_nonconst_ctor_on_const_ptr_2.cpp11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){ in foo()
Dmap_nonconst_ctor_on_const_ptr_3.cpp11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){ in foo()
Dmap_nonconst_ctor_on_const_ptr_4.cpp11 void foo(const float *ptr, DenseIndex rows, DenseIndex cols){ in foo()
Dmap_nonconst_ctor_on_const_ptr_1.cpp11 void foo(CV_QUALIFIER float *ptr, DenseIndex size){ in foo()
/external/eigen/test/
Dresize.cpp12 template<DenseIndex rows, DenseIndex cols>
Dproduct_mmtr.cpp25 DenseIndex othersize = internal::random<DenseIndex>(1,200); in mmtr()
Dsizeoverflow.cpp21 typedef DenseIndex Index;
Dlu.cpp103 DenseIndex size = MatrixType::RowsAtCompileTime; in lu_invertible()
105 size = internal::random<DenseIndex>(1,EIGEN_TEST_MAX_SIZE); in lu_invertible()
Dzerosized.cpp58 …VectorType t2(DenseIndex(0)); // DenseIndex disambiguates with 0-the-null-pointer (error with gcc … in zeroSizedVector()
/external/eigen/unsupported/test/
Dsplines.cpp216 for (Eigen::DenseIndex i=0; i<points.cols(); ++i) in check_global_interpolation2d()
228 for (Eigen::DenseIndex i=0; i<points.cols(); ++i) in check_global_interpolation2d()
/external/eigen/bench/btl/libs/eigen3/
Deigen3_interface.hh219 Matrix<DenseIndex,1,Dynamic> piv(N); in partial_lu_decomp()
220 DenseIndex nb; in partial_lu_decomp()
/external/eigen/Eigen/src/Geometry/
DQuaternion.h725 typedef DenseIndex Index;
743 DenseIndex i = 0;
748 DenseIndex j = (i+1)%3;
749 DenseIndex k = (j+1)%3;

12