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

1 2 3 4

  /external/eigen/unsupported/Eigen/src/Splines/
SplineFitting.h 31 * where \f$p\f$ is the degree and \f$m+1\f$ the number knots
35 * \param[in] degree The spline degree which is used during the interpolation.
41 void KnotAveraging(const KnotVectorType& parameters, DenseIndex degree, KnotVectorType& knots)
45 knots.resize(parameters.size()+degree+1);
47 for (DenseIndex j=1; j<parameters.size()-degree; ++j)
48 knots(j+degree) = parameters.segment(j,degree).mean();
50 knots.segment(0,degree+1) = KnotVectorType::Zero(degree+1)
    [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/ceres-solver/internal/ceres/
polynomial_solver.cc 53 const int degree = companion_matrix.rows(); local
67 for (int i = 0; i < degree; ++i) {
103 const int degree = polynomial.size() - 1; local
105 companion_matrix.resize(degree, degree);
108 companion_matrix.col(degree - 1) = -polynomial.reverse().head(degree);
130 const int degree = polynomial.size() - 1; local
133 if (degree == 0) {
144 if (degree == 1)
    [all...]
  /packages/apps/Camera/src/com/android/camera/ui/
RotateImageView.java 65 public void setOrientation(int degree, boolean animation) {
68 degree = degree >= 0 ? degree % 360 : degree % 360 + 360;
69 if (degree == mTargetDegree) return;
71 mTargetDegree = degree;
108 int degree = mStartDegree + ANIMATION_SPEED local
110 degree = degree >= 0 ? degree % 360 : degree % 360 + 360
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/ui/
RotateImageView.java 65 public void setOrientation(int degree, boolean animation) {
68 degree = degree >= 0 ? degree % 360 : degree % 360 + 360;
69 if (degree == mTargetDegree) return;
71 mTargetDegree = degree;
108 int degree = mStartDegree + ANIMATION_SPEED local
110 degree = degree >= 0 ? degree % 360 : degree % 360 + 360
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/ui/
RotateImageView.java 68 public void setOrientation(int degree) {
70 degree = degree >= 0 ? degree % 360 : degree % 360 + 360;
71 if (degree == mTargetDegree) return;
73 mTargetDegree = degree;
106 int degree = mStartDegree + ANIMATION_SPEED local
108 degree = degree >= 0 ? degree % 360 : degree % 360 + 360
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 58 void computePade(MatrixType& result, const MatrixType& T, int degree);
142 int degree; local
153 degree = getPadeDegree(normTminusI);
155 if ((degree - degree2 <= 1) || (numberOfExtraSquareRoots == 1))
165 computePade(result, T, degree);
169 /* \brief Get suitable degree for Pade approximation. (specialized for RealScalar = float) */
173 const float maxNormForPade[] = { 2.5111573934555054e-1 /* degree = 3 */ , 4.0535837411880493e-1,
175 for (int degree = 3; degree <= maxPadeDegree; ++degree)
244 const int degree = 3; local
260 const int degree = 4; local
276 const int degree = 5; local
294 const int degree = 6; local
312 const int degree = 7; local
332 const int degree = 8; local
352 const int degree = 9; local
374 const int degree = 10; local
396 const int degree = 11; local
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyRotationEvent.java 33 * @param degree Possible rotation degrees, see constants in
38 public MonkeyRotationEvent(int degree, boolean persist) {
40 mRotationDegree = degree;
47 System.out.println(":Sending rotation degree=" + mRotationDegree +
  /external/freetype/include/freetype/internal/services/
svkern.h 34 FT_Int degree,
  /frameworks/base/core/java/android/view/
VelocityTracker.java 246 * Polynomial degree, or zero if only position information is available.
248 public int degree; field in class:VelocityTracker.Estimator
276 * @return The X coefficient, or 0 if the index is greater than the degree.
279 return index <= degree ? xCoeff[index] : 0;
285 * @return The Y coefficient, or 0 if the index is greater than the degree.
288 return index <= degree ? yCoeff[index] : 0;
294 for (int i = 0; i <= degree; i++) {
  /frameworks/base/include/androidfw/
VelocityTracker.h 46 // Polynomial degree (number of coefficients), or zero if no information is
48 uint32_t degree; member in struct:android::VelocityTracker::Estimator
55 degree = 0;
156 // Degree must be no greater than Estimator::MAX_DEGREE.
157 LeastSquaresVelocityTrackerStrategy(uint32_t degree, Weighting weighting = WEIGHTING_NONE);
199 // Degree must be 1 or 2.
200 IntegratingVelocityTrackerStrategy(uint32_t degree);
213 uint32_t degree; member in struct:android::IntegratingVelocityTrackerStrategy::State
  /frameworks/base/libs/androidfw/
VelocityTracker.cpp 255 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
257 int(estimator.degree),
258 vectorToString(estimator.xCoeff, estimator.degree + 1).string(),
259 vectorToString(estimator.yCoeff, estimator.degree + 1).string(),
338 if (getEstimator(id, &estimator) && estimator.degree >= 1) {
359 uint32_t degree, Weighting weighting) :
360 mDegree(degree), mWeighting(weighting) {
393 * Solves a linear least squares problem to obtain a N degree polynomial that fits
594 uint32_t degree = mDegree;
595 if (degree > m - 1)
    [all...]
  /packages/apps/Gallery/src/com/android/camera/
ImageManager.java 200 // picture. The degree is a one element array which returns the orientation
205 Bitmap source, byte[] jpegData, int[] degree) {
217 degree[0] = 0;
220 degree[0] = getExifOrientation(filePath);
241 values.put(Images.Media.ORIENTATION, degree[0]);
253 int degree = 0; local
267 degree = 90;
270 degree = 180;
273 degree = 270;
279 return degree;
    [all...]
  /external/eigen/Eigen/src/OrderingMethods/
Amd.h 89 * Approximate minimum degree ordering algorithm.
119 Index* degree = W + 5*(n+1); local
134 head[i] = -1; // degree list i is empty
141 degree[i] = len[i]; // degree of node i
148 /* --- Initialize degree lists ------------------------------------------ */
151 d = degree[i];
170 next[i] = head[d]; /* put node i in degree list d */
177 /* --- Select node of minimum approximate degree -------------------- */
180 head[mindeg] = next[k]; /* remove k from degree list *
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 38 jfieldID degree; member in struct:android::__anon19715
209 env->SetIntField(outEstimatorObj, gEstimatorClassInfo.degree, estimator.degree);
265 GET_FIELD_ID(gEstimatorClassInfo.degree, clazz,
266 "degree", "I");
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 76 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 77 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/thin_heap_/
debug_fn_imps.hpp 101 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_l_child->m_metadata + 1 == base_type::degree(p_nd));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 77 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/thin_heap_/
debug_fn_imps.hpp 101 _GLIBCXX_DEBUG_ASSERT(p_nd->m_p_l_child->m_metadata + 1 == base_type::degree(p_nd));
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 76 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 76 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 76 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 76 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/binomial_heap_base_/
debug_fn_imps.hpp 77 _GLIBCXX_DEBUG_ASSERT(p_nd->m_metadata == base_type::degree(p_nd));

Completed in 2356 milliseconds

1 2 3 4