HomeSort by relevance Sort by last modified time
    Searched refs:Degree (Results 1 - 10 of 10) sorted by null

  /external/eigen/unsupported/Eigen/src/Splines/
SplineFwd.h 17 template <typename Scalar, int Dim, int Degree = Dynamic> class Spline;
23 * \brief Compile-time attributes of the Spline class for Dynamic degree.
30 enum { Degree = _Degree /*!< The spline curve's degree. */ };
56 * \brief Compile-time attributes of the Spline class for fixed degree.
58 * The traits class inherits all attributes from the SplineTraits of Dynamic degree.
73 /** \brief 2D float B-spline with dynamic degree. */
76 /** \brief 3D float B-spline with dynamic degree. */
79 /** \brief 2D double B-spline with dynamic degree. */
82 /** \brief 3D double B-spline with dynamic degree. *
    [all...]
Spline.h 31 * degree for optimization purposes (would result in stack allocation
40 enum { Degree = _Degree /*!< The spline curve's degree. */ };
56 * For Splines with dynamic degree, the resulting degree will be 0.
59 : m_knots(1, (Degree==Dynamic ? 2 : 2*Degree+2))
60 , m_ctrls(ControlPointVectorType::Zero(2,(Degree==Dynamic ? 1 : Degree+1)))
64 enum { MinDegree = (Degree==Dynamic ? 0 : Degree) }
261 DenseIndex Spline<_Scalar, _Dim, _Degree>::degree() const function in class:Eigen::Spline
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 706 unsigned Degree = OpN->getNodeId();
707 assert(Degree > 0 && "Predecessor over-released!");
708 OpN->setNodeId(--Degree);
709 if (Degree == 0)
731 // Use node id to record degree.
732 unsigned Degree = N->use_size();
733 N->setNodeId(Degree);
752 unsigned Degree = Glue->getNodeId();
761 --Degree;
762 GUser->setNodeId(UDegree + Degree);
    [all...]
SelectionDAG.cpp     [all...]
  /external/llvm/lib/CodeGen/
ScheduleDAG.cpp 473 unsigned Degree = SU->Succs.size();
474 // Temporarily use the Node2Index array as scratch space for degree counts.
475 Node2Index[NodeNum] = Degree;
478 if (Degree == 0) {
  /hardware/intel/img/psb_video/src/
psb_overlay.h 248 #define Degree (2*PI / 360.0)
psb_texture.c 67 #define Degree (2*PI / 360.0)
747 pPriv->hue.Value * Degree,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3d9types.h     [all...]
d3dx9mesh.h 255 D3DDEGREETYPE Degree;
    [all...]
  /external/opencv3/modules/ml/src/
svm.cpp 112 double degree; member in struct:cv::ml::SvmParams
123 degree = 0;
139 degree = _degree;
195 pow( R, params.degree, R );
398 else if( param_id == SVM::DEGREE )
    [all...]

Completed in 635 milliseconds