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

  /frameworks/base/core/java/android/view/
VelocityTracker.java 243 public final float[] yCoeff = new float[MAX_DEGREE + 1];
270 return estimate(time, yCoeff);
288 return index <= degree ? yCoeff[index] : 0;
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 37 jfieldID yCoeff;
203 gEstimatorClassInfo.yCoeff));
208 estimator.yCoeff);
263 GET_FIELD_ID(gEstimatorClassInfo.yCoeff, clazz,
264 "yCoeff", "[F");
  /frameworks/native/include/input/
VelocityTracker.h 44 float xCoeff[MAX_DEGREE + 1], yCoeff[MAX_DEGREE + 1];
59 yCoeff[i] = 0;
  /frameworks/native/libs/input/
VelocityTracker.cpp 254 "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[2] = state.yaccel / 2
    [all...]
  /hardware/intel/img/psb_video/src/
psb_texture.c 148 static void psb_convert_coeffs(double Ycoeff, double Ucoeff, double Vcoeff,
152 static int psb_check_coeffs(double Ycoeff, double Ucoeff, double Vcoeff,
719 double yCoeff, uCoeff, vCoeff, Constant;
755 bright_off, fContrast, &yCoeff, &uCoeff, &vCoeff,
759 psb_convert_coeffs(yCoeff, uCoeff, vCoeff, Constant, /* input coefficients */
769 bright_off, fContrast, &yCoeff, &uCoeff, &vCoeff,
773 psb_convert_coeffs(yCoeff, uCoeff, vCoeff, Constant,
784 bright_off, fContrast, &yCoeff, &uCoeff, &vCoeff,
788 psb_convert_coeffs(yCoeff, uCoeff, vCoeff, Constant,
    [all...]

Completed in 970 milliseconds