HomeSort by relevance Sort by last modified time
    Searched defs:MAX_DEGREE (Results 1 - 2 of 2) sorted by null

  /frameworks/base/core/java/android/view/
VelocityTracker.java 232 // Must match VelocityTracker::Estimator::MAX_DEGREE
233 private static final int MAX_DEGREE = 4;
238 public final float[] xCoeff = new float[MAX_DEGREE + 1];
243 public final float[] yCoeff = new float[MAX_DEGREE + 1];
  /frameworks/native/include/input/
VelocityTracker.h 38 static const size_t MAX_DEGREE = 4;
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 74 milliseconds