OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Degree
(Results
1 - 4
of
4
) 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
. */ };
122
* spline
degree
.
162
* \brief Returns the spline
degree
.
164
DenseIndex
degree
() const;
175
static DenseIndex Span(typename SplineTraits<Spline>::Scalar u, DenseIndex
degree
, const typename SplineTraits<Spline>::KnotVectorType& knots);
186
* \param
degree
The
degree
of the underlying spline.
189
static BasisVectorType BasisFunctions(Scalar u, DenseIndex
degree
, const KnotVectorType& knots)
246
DenseIndex Spline<_Scalar, _Dim, _Degree>::
degree
() const
function in class:Eigen::Spline
[
all
...]
/external/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)
725
// Use node id to record
degree
.
726
unsigned
Degree
= N->use_size();
727
N->setNodeId(
Degree
);
746
unsigned
Degree
= Glue->getNodeId();
755
--
Degree
;
756
GUser->setNodeId(UDegree +
Degree
);
[
all
...]
SelectionDAG.cpp
[
all
...]
Completed in 1136 milliseconds