HomeSort by relevance Sort by last modified time
    Searched refs:DenseIndex (Results 1 - 25 of 42) sorted by null

1 2

  /external/eigen/Eigen/src/Core/
DenseStorage.h 92 inline DenseStorage(DenseIndex,DenseIndex,DenseIndex) {}
94 static inline DenseIndex rows(void) {return _Rows;}
95 static inline DenseIndex cols(void) {return _Cols;}
96 inline void conservativeResize(DenseIndex,DenseIndex,DenseIndex) {}
97 inline void resize(DenseIndex,DenseIndex,DenseIndex) {
    [all...]
Stride.h 47 typedef DenseIndex Index;
89 typedef DenseIndex Index;
101 typedef DenseIndex Index;
  /external/eigen/failtest/
map_nonconst_ctor_on_const_ptr_2.cpp 11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){
map_nonconst_ctor_on_const_ptr_3.cpp 11 void foo(CV_QUALIFIER float *ptr, DenseIndex rows, DenseIndex cols){
map_nonconst_ctor_on_const_ptr_4.cpp 11 void foo(const float *ptr, DenseIndex rows, DenseIndex cols){
map_nonconst_ctor_on_const_ptr_1.cpp 11 void foo(CV_QUALIFIER float *ptr, DenseIndex size){
  /external/eigen/unsupported/Eigen/src/Splines/
Spline.h 106 derivatives(Scalar u, DenseIndex order) const;
115 derivatives(Scalar u, DenseIndex order = DerivativeOrder) const;
150 basisFunctionDerivatives(Scalar u, DenseIndex order) const;
159 basisFunctionDerivatives(Scalar u, DenseIndex order = DerivativeOrder) const;
164 DenseIndex degree() const;
170 DenseIndex span(Scalar u) const;
175 static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex degree, const typename SplineTraits<Spline>::KnotVectorType& knots);
189 static BasisVectorType BasisFunctions(Scalar u, DenseIndex degree, const KnotVectorType& knots);
198 DenseIndex Spline<_Scalar, _Dim, _Degree>::Span
    [all...]
SplineFitting.h 41 void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots)
47 for (DenseIndex j=1; j<parameters.size()-degree; ++j)
68 const DenseIndex n = pts.cols();
101 static SplineType Interpolate(const PointArrayType& pts, DenseIndex degree);
113 static SplineType Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters);
118 SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree, const KnotVectorType& knot_parameters)
129 DenseIndex n = pts.cols();
131 for (DenseIndex i=1; i<n-1; ++i)
133 const DenseIndex span = SplineType::Span(knot_parameters[i], degree, knots);
151 SplineType SplineFitting<SplineType>::Interpolate(const PointArrayType& pts, DenseIndex degree
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialUtils.h 31 for(DenseIndex i=poly.size()-2; i>=0; --i ){
56 for( DenseIndex i=1; i<poly.size(); ++i ){
84 for( DenseIndex i=0; i<poly.size()-1; ++i ){
102 DenseIndex i=0;
109 for( DenseIndex j=i+1; j<poly.size(); ++j ){
132 for( DenseIndex i=1; i< rv.size(); ++i )
134 for( DenseIndex j=i+1; j>0; --j ){ poly[j] = poly[j-1] - rv[i]*poly[j]; }
  /external/eigen/blas/
level3_impl.h 15 typedef void (*functype)(DenseIndex, DenseIndex, DenseIndex, const Scalar *, DenseIndex, const Scalar *, DenseIndex, Scalar *, DenseIndex, Scalar, internal::level3_blocking<Scalar,Scalar>&, Eigen::internal::GemmParallelInfo<DenseIndex>*);
23 func[NOTR | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,ColMajor,false,Scalar,ColMajor,false,ColMajor>::run);
24 func[TR | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,false,Scalar,ColMajor,false,ColMajor>::run);
25 func[ADJ | (NOTR << 2)] = (internal::general_matrix_matrix_product<DenseIndex,Scalar,RowMajor,Conj, Scalar,ColMajor,false,ColMajor>::run)
    [all...]
level1_impl.h 59 DenseIndex ret;
70 DenseIndex ret;
  /external/eigen/test/
resize.cpp 12 template<DenseIndex rows, DenseIndex cols>
zerosized.cpp 39 VectorType t2(DenseIndex(0)); // DenseIndex disambiguates with 0-the-null-pointer (error with gcc 4.4 and MSVC8)
product_mmtr.cpp 27 DenseIndex othersize = internal::random<DenseIndex>(1,200);
sizeoverflow.cpp 21 typedef DenseIndex Index;
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
r1mpyq.h 8 void r1mpyq(DenseIndex m, DenseIndex n, Scalar *a, const std::vector<JacobiRotation<Scalar> > &v_givens, const std::vector<JacobiRotation<Scalar> > &w_givens)
10 typedef DenseIndex Index;
fdjac1.h 6 DenseIndex fdjac1(
11 DenseIndex ml, DenseIndex mu,
14 typedef DenseIndex Index;
rwupdt.h 12 typedef DenseIndex Index;
chkder.h 19 typedef DenseIndex Index;
covar.h 11 typedef DenseIndex Index;
qrsolv.h 17 typedef DenseIndex Index;
r1updt.h 15 typedef DenseIndex Index;
dogleg.h 13 typedef DenseIndex Index;
  /external/eigen/Eigen/src/Core/products/
GeneralMatrixMatrix.h 251 DenseIndex m_mc;
252 DenseIndex m_nc;
253 DenseIndex m_kc;
261 inline DenseIndex mc() const { return m_mc; }
262 inline DenseIndex nc() const { return m_nc; }
263 inline DenseIndex kc() const { return m_kc; }
296 gemm_blocking_space(DenseIndex /*rows*/, DenseIndex /*cols*/, DenseIndex /*depth*/)
325 DenseIndex m_sizeA
    [all...]
  /external/eigen/unsupported/test/
splines.cpp 212 for (Eigen::DenseIndex i=0; i<points.cols(); ++i)
224 for (Eigen::DenseIndex i=0; i<points.cols(); ++i)

Completed in 244 milliseconds

1 2