Searched refs:Coefficients (Results 1 - 19 of 19) sorted by relevance

/external/eigen/Eigen/src/Geometry/
H A DQuaternion.h44 typedef typename internal::traits<Derived>::Coefficients Coefficients; typedef in class:Eigen::QuaternionBase
49 // typedef typename Matrix<Scalar,4,1> Coefficients;
78 inline const VectorBlock<const Coefficients,3> vec() const { return coeffs().template head<3>(); }
81 inline VectorBlock<Coefficients,3> vec() { return coeffs().template head<3>(); }
84 inline const typename internal::traits<Derived>::Coefficients& coeffs() const { return derived().coeffs(); }
87 inline typename internal::traits<Derived>::Coefficients& coeffs() { return derived().coeffs(); }
218 typedef Matrix<_Scalar,4,1,_Options> Coefficients; typedef in struct:Eigen::internal::traits
220 IsAligned = internal::traits<Coefficients>::Flags & AlignedBit,
238 typedef typename internal::traits<Quaternion>::Coefficients Coefficient typedef in class:Eigen::Quaternion
311 typedef Map<Matrix<_Scalar,4,1>, _Options> Coefficients; typedef in struct:Eigen::internal::traits
328 typedef Map<const Matrix<_Scalar,4,1>, _Options> Coefficients; typedef in struct:Eigen::internal::traits
356 typedef typename internal::traits<Map>::Coefficients Coefficients; typedef in class:Eigen::Map
392 typedef typename internal::traits<Map>::Coefficients Coefficients; typedef in class:Eigen::Map
[all...]
H A DHyperplane.h48 : Index(AmbientDimAtCompileTime)+1,1,Options> Coefficients; typedef in class:Eigen::Hyperplane
49 typedef Block<Coefficients,AmbientDimAtCompileTime,1> NormalReturnType;
50 typedef const Block<const Coefficients,AmbientDimAtCompileTime,1> ConstNormalReturnType;
166 inline const Coefficients& coeffs() const { return m_coeffs; }
171 inline Coefficients& coeffs() { return m_coeffs; }
264 Coefficients m_coeffs;
/external/eigen/Eigen/src/Eigen2Support/Geometry/
H A DHyperplane.h43 : int(AmbientDimAtCompileTime)+1,1> Coefficients; typedef in class:Eigen::Hyperplane
44 typedef Block<Coefficients,AmbientDimAtCompileTime,1> NormalReturnType;
136 inline const NormalReturnType normal() const { return NormalReturnType(*const_cast<Coefficients*>(&m_coeffs),0,0,dim(),1); }
155 inline const Coefficients& coeffs() const { return m_coeffs; }
160 inline Coefficients& coeffs() { return m_coeffs; }
251 Coefficients m_coeffs;
H A DQuaternion.h59 /** the type of the Coefficients 4-vector */
60 typedef Matrix<Scalar, 4, 1> Coefficients; typedef in class:Eigen::Quaternion
87 inline const Block<const Coefficients,3,1> vec() const { return m_coeffs.template start<3>(); }
90 inline Block<Coefficients,3,1> vec() { return m_coeffs.template start<3>(); }
93 inline const Coefficients& coeffs() const { return m_coeffs; }
96 inline Coefficients& coeffs() { return m_coeffs; }
203 Coefficients m_coeffs;
384 return Quaternion(Coefficients::Zero());
/external/eigen/test/eigen2/
H A Deigen2_newstdvector.cpp89 typedef typename QuaternionType::Coefficients Coefficients; typedef
90 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
H A Deigen2_qtvector.cpp98 typedef typename QuaternionType::Coefficients Coefficients; typedef
99 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
H A Deigen2_stdvector.cpp88 typedef typename QuaternionType::Coefficients Coefficients; typedef
89 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
/external/eigen/test/
H A Dqtvector.cpp98 typedef typename QuaternionType::Coefficients Coefficients; typedef
99 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
H A Dstddeque.cpp79 typedef typename QuaternionType::Coefficients Coefficients; typedef
80 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
H A Dstdlist.cpp79 typedef typename QuaternionType::Coefficients Coefficients; typedef
80 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
H A Dstdvector.cpp88 typedef typename QuaternionType::Coefficients Coefficients; typedef
89 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
H A Dstdvector_overload.cpp102 typedef typename QuaternionType::Coefficients Coefficients; typedef
103 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
/external/chromium_org/third_party/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp104 SkDCubic::Coefficients(&r[0].fX, &A, &B, &C, &D);
133 SkDCubic::Coefficients(&fCubic[0].fY, &A, &B, &C, &D);
161 SkDCubic::Coefficients(&fCubic[0].fX, &A, &B, &C, &D);
H A DSkPathOpsCubic.h40 static void Coefficients(const double* cubic, double* A, double* B, double* C, double* D);
H A DSkPathOpsCubic.cpp32 void SkDCubic::Coefficients(const double* src, double* A, double* B, double* C, double* D) { function in class:SkDCubic
/external/skia/src/pathops/
H A DSkDCubicLineIntersection.cpp104 SkDCubic::Coefficients(&r[0].fX, &A, &B, &C, &D);
133 SkDCubic::Coefficients(&fCubic[0].fY, &A, &B, &C, &D);
161 SkDCubic::Coefficients(&fCubic[0].fX, &A, &B, &C, &D);
H A DSkPathOpsCubic.h40 static void Coefficients(const double* cubic, double* A, double* B, double* C, double* D);
H A DSkPathOpsCubic.cpp32 void SkDCubic::Coefficients(const double* src, double* A, double* B, double* C, double* D) { function in class:SkDCubic
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp2226 const SCEV *Coefficients = Src; local
2228 dyn_cast<SCEVAddRecExpr>(Coefficients)) {
2239 Coefficients = AddRec->getStart();
2241 const SCEV *SrcConst = Coefficients;
2247 Coefficients = Dst;
2249 dyn_cast<SCEVAddRecExpr>(Coefficients)) {
2260 Coefficients = AddRec->getStart();
2262 const SCEV *DstConst = Coefficients;
2319 Coefficients = Src;
2321 dyn_cast<SCEVAddRecExpr>(Coefficients)) {
[all...]

Completed in 183 milliseconds