Searched refs:yCoeff (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/core/java/android/view/ |
D | VelocityTracker.java | 243 public final float[] yCoeff = new float[MAX_DEGREE + 1]; field in VelocityTracker.Estimator 270 return estimate(time, yCoeff); in estimateY() 288 return index <= degree ? yCoeff[index] : 0; in getYCoeff()
|
/frameworks/base/core/jni/ |
D | android_view_VelocityTracker.cpp | 38 jfieldID yCoeff; member 204 gEstimatorClassInfo.yCoeff)); in android_view_VelocityTracker_nativeGetEstimator() 209 estimator.yCoeff); in android_view_VelocityTracker_nativeGetEstimator() 253 gEstimatorClassInfo.yCoeff = GetFieldIDOrDie(env, clazz, "yCoeff", "[F"); in register_android_view_VelocityTracker()
|
/frameworks/native/libs/input/ |
D | VelocityTracker.cpp | 259 vectorToString(estimator.yCoeff, estimator.degree + 1).c_str(), in addMovement() 340 *outVy = estimator.yCoeff[1]; in getVelocity() 603 && solveLeastSquares(time, y, w, m, n, outEstimator->yCoeff, &ydet)) { in getEstimator() 611 vectorToString(outEstimator->yCoeff, n).c_str(), in getEstimator() 620 outEstimator->yCoeff[0] = y[0]; in getEstimator() 805 outEstimator->yCoeff[0] = state.ypos; in populateEstimator() 806 outEstimator->yCoeff[1] = state.yvel; in populateEstimator() 807 outEstimator->yCoeff[2] = state.yaccel / 2; in populateEstimator() 918 outEstimator->yCoeff[0] = newestPosition.y; in getEstimator() 921 outEstimator->yCoeff[1] = accumVy; in getEstimator()
|
/frameworks/native/include/input/ |
D | VelocityTracker.h | 44 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1]; member 59 yCoeff[i] = 0; in clear()
|