Searched defs:MAX_DEGREE (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/view/
H A DVelocityTracker.java232 // Must match VelocityTracker::Estimator::MAX_DEGREE
233 private static final int MAX_DEGREE = 4; field in class:VelocityTracker.Estimator
238 public final float[] xCoeff = new float[MAX_DEGREE + 1];
243 public final float[] yCoeff = new float[MAX_DEGREE + 1];
/frameworks/native/include/input/
H A DVelocityTracker.h38 static const size_t MAX_DEGREE = 4; member in struct:android::VelocityTracker::Estimator
44 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1];
57 for (size_t i = 0; i <= MAX_DEGREE; i++) {
156 // Degree must be no greater than Estimator::MAX_DEGREE.

Completed in 7 milliseconds