HomeSort by relevance Sort by last modified time
    Searched full:xaccel (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)
99 *xAccel = (xVolts - m_zeroX) / ADXL335_SENSITIVITY;
adxl335.h 120 * @param xAccel Pointer to returned X-axis value
124 void acceleration(float *xAccel, float *yAccel, float *zAccel);
  /frameworks/native/libs/input/
VelocityTracker.cpp 750 state.xaccel = 0;
780 float xaccel = (xvel - state.xvel) / dt; local
783 state.xaccel = xaccel;
787 state.xaccel += (xaccel - state.xaccel) * alpha;
790 state.xvel += (state.xaccel * dt) * alpha;
805 outEstimator->xCoeff[2] = state.xaccel / 2;
    [all...]
  /frameworks/native/include/input/
VelocityTracker.h 215 float xpos, xvel, xaccel; member in struct:android::IntegratingVelocityTrackerStrategy::State

Completed in 1359 milliseconds