HomeSort by relevance Sort by last modified time
    Searched refs:Coefficients (Results 1 - 25 of 27) sorted by null

1 2

  /frameworks/av/media/libeffects/lvm/lib/Common/src/
LVM_Power10.c 30 /* the following table of 32-bit integer polynomial coefficients: */
60 LVM_INT32 Y,Coefficients[13]={ 16775636,
74 Coefficients,
LVM_FO_HPF.c 41 /* following table of 32-bit integer polynomial coefficients: */
66 /* pCoeffs Points to the filter coefficients calculated here */
75 LVM_INT32 Y,Coefficients[13]={ -8388571,
89 Coefficients,
LVM_FO_LPF.c 41 /* following table of 32-bit integer polynomial coefficients: */
66 /* pCoeffs Points to the filter coefficients calculated here */
75 LVM_INT32 Y,Coefficients[13]={ -8388571,
87 Coefficients,
  /external/eigen/Eigen/src/Geometry/
Quaternion.h 44 typedef typename internal::traits<Derived>::Coefficients Coefficients;
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>(); }
83 /** \returns a read-only vector expression of the coefficients (x,y,z,w) */
84 inline const typename internal::traits<Derived>::Coefficients& coeffs() const { return derived().coeffs(); }
86 /** \returns a vector expression of the coefficients (x,y,z,w) */
87 inline typename internal::traits<Derived>::Coefficients& coeffs() { return derived().coeffs(); }
111 /** \returns the squared norm of the quaternion's coefficients
    [all...]
Hyperplane.h 25 * \param _Scalar the scalar type, i.e., the type of the coefficients
48 : Index(AmbientDimAtCompileTime)+1,1,Options> Coefficients;
49 typedef Block<Coefficients,AmbientDimAtCompileTime,1> NormalReturnType;
50 typedef const Block<const Coefficients,AmbientDimAtCompileTime,1> ConstNormalReturnType;
163 /** \returns a constant reference to the coefficients c_i of the plane equation:
166 inline const Coefficients& coeffs() const { return m_coeffs; }
168 /** \returns a non-constant reference to the coefficients c_i of the plane equation:
171 inline Coefficients& coeffs() { return m_coeffs; }
265 Coefficients m_coeffs;
  /external/eigen/Eigen/src/Eigen2Support/Geometry/
Hyperplane.h 24 * \param _Scalar the scalar type, i.e., the type of the coefficients
43 : int(AmbientDimAtCompileTime)+1,1> Coefficients;
44 typedef Block<Coefficients,AmbientDimAtCompileTime,1> NormalReturnType;
136 inline const NormalReturnType normal() const { return NormalReturnType(*const_cast<Coefficients*>(&m_coeffs),0,0,dim(),1); }
152 /** \returns a constant reference to the coefficients c_i of the plane equation:
155 inline const Coefficients& coeffs() const { return m_coeffs; }
157 /** \returns a non-constant reference to the coefficients c_i of the plane equation:
160 inline Coefficients& coeffs() { return m_coeffs; }
251 Coefficients m_coeffs;
Quaternion.h 25 * \param _Scalar the scalar type, i.e., the type of the coefficients
56 /** the scalar type of the coefficients */
59 /** the type of the Coefficients 4-vector */
60 typedef Matrix<Scalar, 4, 1> Coefficients;
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>(); }
92 /** \returns a read-only vector expression of the coefficients (x,y,z,w) */
93 inline const Coefficients& coeffs() const { return m_coeffs; }
95 /** \returns a vector expression of the coefficients (x,y,z,w) */
96 inline Coefficients& coeffs() { return m_coeffs;
    [all...]
  /frameworks/av/media/libeffects/lvm/lib/Eq/src/
LVEQNB_Control.c 205 /* Sets the filter coefficients. This uses the type to select single or double */
206 /* precision coefficients. */
222 * Set the coefficients for each band by the init function
228 * Check band type for correct initialisation method and recalculate the coefficients
235 PK_C32_Coefs_t Coefficients;
238 * Calculate the double precision coefficients
242 &Coefficients);
245 * Set the coefficients
249 &Coefficients);
255 PK_C16_Coefs_t Coefficients;
    [all...]
  /external/eigen/test/eigen2/
eigen2_newstdvector.cpp 89 typedef typename QuaternionType::Coefficients Coefficients;
90 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
eigen2_qtvector.cpp 98 typedef typename QuaternionType::Coefficients Coefficients;
99 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
eigen2_stdvector.cpp 88 typedef typename QuaternionType::Coefficients Coefficients;
89 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
  /external/eigen/test/
qtvector.cpp 98 typedef typename QuaternionType::Coefficients Coefficients;
99 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
stddeque.cpp 79 typedef typename QuaternionType::Coefficients Coefficients;
80 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
stdlist.cpp 79 typedef typename QuaternionType::Coefficients Coefficients;
80 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
stdvector.cpp 88 typedef typename QuaternionType::Coefficients Coefficients;
89 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
stdvector_overload.cpp 102 typedef typename QuaternionType::Coefficients Coefficients;
103 QuaternionType x(Coefficients::Random()), y(Coefficients::Random());
geo_eulerangles.cpp 79 q1.coeffs() = Quaternionx::Coefficients::Random().normalized();
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_Control.c 163 /* Reinitialize some parameters and changes filters' coefficients if */
193 /* Modifies filters types and coefficients, clear the taps and
317 /* Sets the band pass filter coefficients. This uses the type to select */
318 /* single or double precision coefficients. */
337 * Set the coefficients for each band by the init function
345 BP_C32_Coefs_t Coefficients;
348 * Calculate the double precision coefficients
352 &Coefficients);
355 * Set the coefficients
359 &Coefficients);
    [all...]
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsCubic.h 35 static void Coefficients(const double* cubic, double* A, double* B, double* C, double* D);
SkDCubicLineIntersection.cpp 105 SkDCubic::Coefficients(&c[0].fX, &A, &B, &C, &D);
165 SkDCubic::Coefficients(&c[0].fY, &A, &B, &C, &D);
205 SkDCubic::Coefficients(&c[0].fX, &A, &B, &C, &D);
  /external/skia/src/pathops/
SkPathOpsCubic.h 35 static void Coefficients(const double* cubic, double* A, double* B, double* C, double* D);
SkDCubicLineIntersection.cpp 105 SkDCubic::Coefficients(&c[0].fX, &A, &B, &C, &D);
165 SkDCubic::Coefficients(&c[0].fY, &A, &B, &C, &D);
205 SkDCubic::Coefficients(&c[0].fX, &A, &B, &C, &D);
  /external/chromium_org/third_party/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 159 SkDCubic::Coefficients(&cubic[0].fY, &A, &B, &C, &D);
254 SkDCubic::Coefficients(&cubic[0].fY, &A, &B, &C, &D);
  /external/skia/tests/
PathOpsCubicLineIntersectionIdeas.cpp 159 SkDCubic::Coefficients(&cubic[0].fY, &A, &B, &C, &D);
254 SkDCubic::Coefficients(&cubic[0].fY, &A, &B, &C, &D);
  /external/llvm/lib/Analysis/
DependenceAnalysis.cpp     [all...]

Completed in 229 milliseconds

1 2