HomeSort by relevance Sort by last modified time
    Searched defs:Degree (Results 1 - 9 of 9) 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. */ };
61 * \brief Compile-time attributes of the Spline class for fixed degree.
63 * The traits class inherits all attributes from the SplineTraits of Dynamic degree.
80 /** \brief 2D float B-spline with dynamic degree. */
83 /** \brief 3D float B-spline with dynamic degree. */
86 /** \brief 2D double B-spline with dynamic degree. */
89 /** \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. */ };
62 * For Splines with dynamic degree, the resulting degree will be 0.
65 : m_knots(1, (Degree==Dynamic ? 2 : 2*Degree+2))
66 , m_ctrls(ControlPointVectorType::Zero(Dimension,(Degree==Dynamic ? 1 : Degree+1)))
70 enum { MinDegree = (Degree==Dynamic ? 0 : Degree) }
282 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/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGFast.cpp 699 unsigned Degree = OpN->getNodeId();
700 assert(Degree > 0 && "Predecessor over-released!");
701 OpN->setNodeId(--Degree);
702 if (Degree == 0)
724 // Use node id to record degree.
725 unsigned Degree = N->use_size();
726 N->setNodeId(Degree);
745 unsigned Degree = Glue->getNodeId();
753 --Degree;
754 GUser->setNodeId(UDegree + Degree);
    [all...]
  /external/llvm/lib/Target/AMDGPU/
SIMachineScheduler.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AMDGPU/
SIMachineScheduler.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp     [all...]
  /external/mesa3d/include/D3D9/
d3d9types.h     [all...]

Completed in 777 milliseconds