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

/frameworks/base/core/java/android/view/
H A DVelocityTracker.java243 public final float[] yCoeff = new float[MAX_DEGREE + 1]; field in class:VelocityTracker.Estimator
270 return estimate(time, yCoeff);
288 return index <= degree ? yCoeff[index] : 0;
/frameworks/base/core/jni/
H A Dandroid_view_VelocityTracker.cpp37 jfieldID yCoeff; member in struct:android::__anon881
203 gEstimatorClassInfo.yCoeff));
208 estimator.yCoeff);
263 GET_FIELD_ID(gEstimatorClassInfo.yCoeff, clazz,
264 "yCoeff", "[F");
/frameworks/native/libs/input/
H A DVelocityTracker.cpp254 "estimator (degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f)",
258 vectorToString(estimator.yCoeff, estimator.degree + 1).string(),
339 *outVy = estimator.yCoeff[1];
601 && solveLeastSquares(time, y, w, m, n, outEstimator->yCoeff, &ydet)) {
606 ALOGD("estimate: degree=%d, xCoeff=%s, yCoeff=%s, confidence=%f",
609 vectorToString(outEstimator->yCoeff, n).string(),
618 outEstimator->yCoeff[0] = y[0];
803 outEstimator->yCoeff[0] = state.ypos;
804 outEstimator->yCoeff[1] = state.yvel;
805 outEstimator->yCoeff[
[all...]
/frameworks/native/include/input/
H A DVelocityTracker.h44 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1]; member in struct:android::VelocityTracker::Estimator
59 yCoeff[i] = 0;

Completed in 876 milliseconds