OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Degree
(Results
1 - 8
of
8
) 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
...]
/hardware/intel/img/psb_video/src/
psb_texture.c
67
#define
Degree
(2*PI / 360.0)
747
pPriv->hue.Value *
Degree
,
[
all
...]
psb_overlay.h
248
#define
Degree
(2*PI / 360.0)
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
d3dx9mesh.h
255
D3DDEGREETYPE
Degree
;
[
all
...]
d3d9types.h
[
all
...]
Completed in 618 milliseconds