HomeSort by relevance Sort by last modified time
    Searched refs:xCoeff (Results 1 - 4 of 4) sorted by null

  /frameworks/base/core/java/android/view/
VelocityTracker.java 238 public final float[] xCoeff = new float[MAX_DEGREE + 1];
261 return estimate(time, xCoeff);
279 return index <= degree ? xCoeff[index] : 0;
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 36 jfieldID xCoeff;
201 gEstimatorClassInfo.xCoeff));
206 estimator.xCoeff);
261 GET_FIELD_ID(gEstimatorClassInfo.xCoeff, clazz,
262 "xCoeff", "[F");
  /frameworks/native/include/input/
VelocityTracker.h 44 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1];
58 xCoeff[i] = 0;
  /frameworks/native/libs/input/
VelocityTracker.cpp 254 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
257 vectorToString(estimator.xCoeff, estimator.degree + 1).string(),
338 *outVx = estimator.xCoeff[1];
600 if (solveLeastSquares(time, x, w, m, n, outEstimator->xCoeff, &xdet)
606 ALOGD("estimate: degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f",
608 vectorToString(outEstimator->xCoeff, n).string(),
617 outEstimator->xCoeff[0] = x[0];
800 outEstimator->xCoeff[0] = state.xpos;
801 outEstimator->xCoeff[1] = state.xvel;
802 outEstimator->xCoeff[2] = state.xaccel / 2
    [all...]

Completed in 1695 milliseconds