/external/eigen/unsupported/Eigen/src/Splines/ |
SplineFwd.h | 25 template <typename _Scalar, int _Dim, int _Degree> 26 struct SplineTraits< Spline<_Scalar, _Dim, _Degree>, Dynamic > 29 enum { Dimension = _Dim /*!< The spline curve's dimension. */ }; 60 template < typename _Scalar, int _Dim, int _Degree, int _DerivativeOrder > 61 struct SplineTraits< Spline<_Scalar, _Dim, _Degree>, _DerivativeOrder > : public SplineTraits< Spline<_Scalar, _Dim, _Degree> > 70 typedef Array<_Scalar,_Dim,Dynamic,ColMajor,_Dim,NumOfDerivativesAtCompileTime> DerivativeType;
|
Spline.h | 29 * \tparam _Dim The curve dimension (e.g. 2 or 3) 34 template <typename _Scalar, int _Dim, int _Degree> 39 enum { Dimension = _Dim /*!< The spline curve's dimension. */ }; 197 template <typename _Scalar, int _Dim, int _Degree> 198 DenseIndex Spline<_Scalar, _Dim, _Degree>::Span( 199 typename SplineTraits< Spline<_Scalar, _Dim, _Degree> >::Scalar u, 201 const typename SplineTraits< Spline<_Scalar, _Dim, _Degree> >::KnotVectorType& knots) 209 template <typename _Scalar, int _Dim, int _Degree> 210 typename Spline<_Scalar, _Dim, _Degree>::BasisVectorType 211 Spline<_Scalar, _Dim, _Degree>::BasisFunctions [all...] |
/hardware/qcom/display/liboverlay/pipes/ |
overlay3DPipe.h | 192 utils::Dim _dim; local 193 if(!utils::getCropS3D<CHAN>(d, _dim, mM3Dfmt)){ 195 _dim = d; 197 return mM3d.setCrop(_dim); 202 utils::Dim _dim; local 210 if(!utils::getPositionS3D<CHAN>(_whf, _dim)) { 212 _dim = d; 214 return mM3d.setPosition(_dim); 261 utils::Dim _dim; local 262 if(!utils::getCropS3D<CHAN>(d, _dim, mM3Dfmt)) 319 utils::Dim _dim; local 329 utils::Dim _dim; local 394 utils::Dim _dim; local 412 utils::Dim _dim; local [all...] |
/external/eigen/Eigen/src/Eigen2Support/Geometry/ |
RotationBase.h | 22 * \param _Dim the dimension of the space 24 template<typename Derived, int _Dim> 28 enum { Dim = _Dim };
|
AlignedBox.h | 40 /** Constructs a null box with \a _dim the dimension of the ambient space. */ 41 inline explicit AlignedBox(int _dim) : m_min(_dim), m_max(_dim)
|
ParametrizedLine.h | 41 /** Constructs a dynamic-size line with \a _dim the dimension 43 inline explicit ParametrizedLine(int _dim) : m_origin(_dim), m_direction(_dim) {}
|
Scaling.h | 21 * \param _Dim the dimension of the space, can be a compile time value or Dynamic 28 template<typename _Scalar, int _Dim> 32 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_Dim) 34 enum { Dim = _Dim };
|
Translation.h | 21 * \param _Dim the dimension of the space, can be a compile time value or Dynamic 28 template<typename _Scalar, int _Dim> 32 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_Dim) 34 enum { Dim = _Dim };
|
Transform.h | 32 * \param _Dim the dimension of the space 42 template<typename _Scalar, int _Dim> 46 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_Dim==Dynamic ? Dynamic : (_Dim+1)*(_Dim+1)) 48 Dim = _Dim, ///< space dimension in which the transformation holds 49 HDim = _Dim+1 ///< size of a respective homogeneous vector 166 inline const typename ei_transform_product_impl<OtherDerived,_Dim,_Dim+1>::ResultType
|
Hyperplane.h | 49 /** Constructs a dynamic-size hyperplane with \a _dim the dimension 51 inline explicit Hyperplane(int _dim) : m_coeffs(_dim+1) {}
|
/external/eigen/Eigen/src/Geometry/ |
ParametrizedLine.h | 51 /** Constructs a dynamic-size line with \a _dim the dimension 53 inline explicit ParametrizedLine(Index _dim) : m_origin(_dim), m_direction(_dim) {}
|
Translation.h | 22 * \param _Dim the dimension of the space, can be a compile time value or Dynamic 29 template<typename _Scalar, int _Dim> 33 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_Dim) 35 enum { Dim = _Dim };
|
RotationBase.h | 26 * \param _Dim the dimension of the space 28 template<typename Derived, int _Dim> 32 enum { Dim = _Dim };
|
Hyperplane.h | 60 /** Constructs a dynamic-size hyperplane with \a _dim the dimension 62 inline explicit Hyperplane(Index _dim) : m_coeffs(_dim+1) {}
|
AlignedBox.h | 62 /** Constructs a null box with \a _dim the dimension of the ambient space. */ 63 inline explicit AlignedBox(Index _dim) : m_min(_dim), m_max(_dim)
|
Transform.h | 74 * \tparam _Dim the dimension of the space 175 template<typename _Scalar, int _Dim, int _Mode, int _Options> 179 EIGEN_MAKE_ALIGNED_OPERATOR_NEW_IF_VECTORIZABLE_FIXED_SIZE(_Scalar,_Dim==Dynamic ? Dynamic : (_Dim+1)*(_Dim+1)) 183 Dim = _Dim, ///< space dimension in which the transformation holds 184 HDim = _Dim+1, ///< size of a respective homogeneous vector 411 inline const typename internal::transform_left_product_impl<OtherDerived,Mode,Options,_Dim,_Dim+1>::ResultType [all...] |
/external/eigen/unsupported/Eigen/src/BVH/ |
KdBVH.h | 58 * \param _Dim The dimension of the space in which the hierarchy lives 60 * be defined and return an AlignedBox<_Scalar, _Dim> or bounding boxes must be provided to the tree initializer. 67 template<typename _Scalar, int _Dim, typename _Object> class KdBVH 70 enum { Dim = _Dim };
|
/external/eigen/Eigen/src/Core/util/ |
ForwardDeclarations.h | 232 template<typename Derived, int _Dim> class RotationBase; 240 template<typename Derived, int _Dim> class eigen2_RotationBase;
|
/external/opencv/cv/src/ |
_cvkdtree.hpp | 131 median_pr(const __instype & _pivot, int _dim, __deref _deref, __valuector _ctor) 132 : pivot(_pivot), dim(_dim), deref(_deref), ctor(_ctor) {
|
/device/samsung/manta/gps/ |
gpsd | |