Home
last modified time | relevance | path

Searched refs:accel (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/opengl/tests/gl2_cameraeye/src/com/android/gl2cameraeye/
DGL2CameraEye.java362 float[] accel = new float[3]; in doPhysics() local
363 accel[0] = totalForce[0]/mass; in doPhysics()
364 accel[1] = totalForce[1]/mass; in doPhysics()
365 accel[2] = totalForce[2]/mass; in doPhysics()
368 mVel[0] = mVel[0] + accel[0]*deltaT; in doPhysics()
369 mVel[1] = mVel[1] + accel[1]*deltaT; in doPhysics()
370 mVel[2] = mVel[2] + accel[2]*deltaT; in doPhysics()
/frameworks/av/services/audioflinger/
DEffects.cpp1421 uint32_t accel = flags & EFFECT_FLAG_HW_ACC_MASK; in effectFlagsToString() local
1422 if (accel) { in effectFlagsToString()
1424 switch (accel) { in effectFlagsToString()
/frameworks/base/core/java/android/view/
DViewRootImpl.java5734 float accel = 1; in process() local
5740 accel = mX.acceleration; in process()
5748 accel = mY.acceleration; in process()
5755 int accelMovement = (int)(movement * accel); in process()
5758 + " accel=" + accel); in process()