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

  /hardware/bsp/intel/peripheral/libupm/src/adxl335/
javaupm_adxl335.i 7 %apply float *OUTPUT { float *xAccel, float *yAccel, float *zAccel };
adxl335.cxx 89 void ADXL335::acceleration(float *xAccel, float *yAccel, float *zAccel)
100 *yAccel = (yVolts - m_zeroY) / ADXL335_SENSITIVITY;
adxl335.h 121 * @param yAccel Pointer to returned Y-axis value
124 void acceleration(float *xAccel, float *yAccel, float *zAccel);
  /frameworks/native/libs/input/
VelocityTracker.cpp 753 state.yaccel = 0;
781 float yaccel = (yvel - state.yvel) / dt; local
784 state.yaccel = yaccel;
788 state.yaccel += (yaccel - state.yaccel) * alpha;
791 state.yvel += (state.yaccel * dt) * alpha;
808 outEstimator->yCoeff[2] = state.yaccel / 2;
    [all...]
  /frameworks/native/include/input/
VelocityTracker.h 216 float ypos, yvel, yaccel; member in struct:android::IntegratingVelocityTrackerStrategy::State

Completed in 2132 milliseconds