HomeSort by relevance Sort by last modified time
    Searched refs:MAX_DEGREE (Results 1 - 3 of 3) 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.
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 206 env->SetFloatArrayRegion(xCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,
208 env->SetFloatArrayRegion(yCoeffObj, 0, VelocityTracker::Estimator::MAX_DEGREE + 1,

Completed in 73 milliseconds