Searched refs:xCoeff (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/view/
H A DVelocityTracker.java238 public final float[] xCoeff = new float[MAX_DEGREE + 1]; field in class:VelocityTracker.Estimator
261 return estimate(time, xCoeff);
279 return index <= degree ? xCoeff[index] : 0;
/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp36 jfieldID xCoeff; member in struct:android::__anon881
201 gEstimatorClassInfo.xCoeff));
206 estimator.xCoeff);
261 GET_FIELD_ID(gEstimatorClassInfo.xCoeff, clazz,
262 "xCoeff", "[F");
/frameworks/native/libs/input/
H A DVelocityTracker.cpp254 "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[
[all...]
/frameworks/native/include/input/
H A DVelocityTracker.h44 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1]; member in struct:android::VelocityTracker::Estimator
58 xCoeff[i] = 0;

Completed in 2452 milliseconds