HomeSort by relevance Sort by last modified time
    Searched defs:velocity (Results 1 - 25 of 30) sorted by null

1 2

  /external/sonivox/arm-fm-22k/lib_src/
eas_otadata.h 74 EAS_U8 velocity; /* current volume */ member in struct:__anon11145
eas_imelody.c 876 EAS_U8 velocity; local
889 velocity = (EAS_U8) (pData->volume ? pData->volume * IMELODY_VEL_MUL + IMELODY_VEL_OFS : 0);
893 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, IMELODY_CHANNEL, pData->note, velocity);
    [all...]
eas_synth.h 285 EAS_U8 velocity; /* 0 <= velocity <= 127 */ member in struct:s_synth_voice_tag
288 EAS_U8 nextVelocity; /* 0 <= velocity <= 127 */
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_otadata.h 74 EAS_U8 velocity; /* current volume */ member in struct:__anon11195
eas_imelody.c 876 EAS_U8 velocity; local
889 velocity = (EAS_U8) (pData->volume ? pData->volume * IMELODY_VEL_MUL + IMELODY_VEL_OFS : 0);
893 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, IMELODY_CHANNEL, pData->note, velocity);
    [all...]
eas_synth.h 285 EAS_U8 velocity; /* 0 <= velocity <= 127 */ member in struct:s_synth_voice_tag
288 EAS_U8 nextVelocity; /* 0 <= velocity <= 127 */
  /external/sonivox/arm-wt-22k/lib_src/
eas_otadata.h 74 EAS_U8 velocity; /* current volume */ member in struct:__anon11247
eas_imelody.c 885 EAS_U8 velocity; local
898 velocity = (EAS_U8) (pData->volume ? pData->volume * IMELODY_VEL_MUL + IMELODY_VEL_OFS : 0);
902 VMStartNote(pEASData->pVoiceMgr, pData->pSynth, IMELODY_CHANNEL, pData->note, velocity);
    [all...]
eas_synth.h 285 EAS_U8 velocity; /* 0 <= velocity <= 127 */ member in struct:s_synth_voice_tag
288 EAS_U8 nextVelocity; /* 0 <= velocity <= 127 */
  /external/webkit/Source/WebCore/webaudio/
AudioListener.h 65 // Velocity
67 void setVelocity(const FloatPoint3D &velocity) { m_velocity = velocity; }
68 const FloatPoint3D& velocity() const { return m_velocity; } function in class:WebCore::AudioListener
AudioPannerNode.h 85 // Velocity
86 FloatPoint3D velocity() const { return m_velocity; } function in class:WebCore::AudioPannerNode
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FlingScroller.java 26 // (1) The velocity does not change because of min/max limit.
32 // The fling duration (in milliseconds) when velocity is 1 pixel/second
85 double velocity = Math.hypot(velocityX, velocityY); local
86 mSinAngle = velocityY / velocity;
87 mCosAngle = velocityX / velocity;
90 // velocity formula: v(t) = d * (e - s) * (1 - t / T) ^ (d - 1) / T
97 * Math.pow(Math.abs(velocity), 1.0 / (DECELERATED_FACTOR - 1)));
101 velocity * mDuration / DECELERATED_FACTOR / 1000);
137 // velocity formula: v(t) = d * (e - s) * (1 - t / T) ^ (d - 1) / T
  /external/quake/quake/src/QW/client/
pmove.h 56 vec3_t velocity; member in struct:__anon10457
  /external/quake/quake/src/WinQuake/
sv_user.cpp 38 float *velocity; variable
130 vel = velocity;
179 VectorSubtract (wishvel, velocity, pushvec);
187 velocity[i] += accelspeed*pushvec[i];
195 currentspeed = DotProduct (velocity, wishdir);
204 velocity[i] += accelspeed*wishdir[i];
215 currentspeed = DotProduct (velocity, wishveloc);
225 velocity[i] += accelspeed*wishveloc[i];
277 speed = Length (velocity);
283 VectorScale (velocity, newspeed/speed, velocity)
    [all...]
client.h 176 vec3_t velocity; // lerped between mvelocity[0] and [1] member in struct:__anon10654
  /external/replicaisland/src/com/replica/replicaisland/
NPCAnimationComponent.java 125 final Vector2 velocity = parentObject.getVelocity(); local
126 if (velocity.y < FALL_SPEED_THRESHOLD) {
137 final Vector2 velocity = parentObject.getVelocity(); local
138 if (velocity.y > JUMP_SPEED_THRESHOLD) {
148 final Vector2 velocity = parentObject.getVelocity(); local
149 if (Math.abs(velocity.x) >= RUN_SPEED_THRESHOLD) {
158 final Vector2 velocity = parentObject.getVelocity(); local
161 if ((velocity.x < 0.0f && parentObject.touchingLeftWall())
162 || (velocity.x > 0.0f && parentObject.touchingRightWall())) {
193 final Vector2 velocity = parentObject.getVelocity() local
219 final Vector2 velocity = parentObject.getVelocity(); local
256 final Vector2 velocity = parentObject.getVelocity(); local
292 final Vector2 velocity = parentObject.getVelocity(); local
303 final Vector2 velocity = parentObject.getVelocity(); local
321 final Vector2 velocity = parentObject.getVelocity(); local
    [all...]
  /frameworks/base/core/jni/
android_view_VelocityTracker.cpp 29 // Special constant to request the velocity of the active pointer.
54 struct Velocity {
61 Velocity mCalculatedVelocity[MAX_POINTERS];
101 Velocity& velocity = mCalculatedVelocity[index]; local
102 velocity.vx = vx;
103 velocity.vy = vy;
115 const Velocity& velocity = mCalculatedVelocity[index]; local
116 vx = velocity.vx
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
SwipeHelper.java 207 * @param velocity The desired pixels/second speed at which the view should move
209 public void dismissChild(final View view, float velocity) {
214 if (velocity < 0
215 || (velocity == 0 && getTranslation(animView) < 0)
217 || (velocity == 0 && getTranslation(animView) == 0 && mSwipeDirection == Y)) {
223 if (velocity != 0) {
226 .abs(velocity)));
252 public void snapChild(final View view, float velocity) {
305 float velocity = getVelocity(mVelocityTracker); local
311 boolean childSwipedFastEnough = (Math.abs(velocity) > escapeVelocity) &
    [all...]
  /frameworks/base/core/java/android/widget/
Scroller.java 199 * Returns the current velocity.
201 * @return The original velocity less the deceleration. Result may be
350 * depend on the initial velocity of the fling.
354 * @param velocityX Initial velocity of the fling (X) measured in pixels per
356 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
392 float velocity = FloatMath.sqrt(velocityX * velocityX + velocityY * velocityY); local
394 mVelocity = velocity;
395 final double l = Math.log(START_TENSION * velocity / ALPHA);
401 float coeffX = velocity == 0 ? 1.0f : velocityX / velocity;
    [all...]
  /external/quake/quake/src/QW/progs/
progdefs.h 71 vec3_t velocity; member in struct:__anon10568
  /external/quake/quake/src/QW/server/
progdefs.h 90 vec3_t velocity; member in struct:__anon10616
  /external/sonivox/arm-fm-22k/host_src/
eas_types.h 237 EAS_U8 velocity; member in struct:s_ext_audio_event_tag
  /external/sonivox/arm-hybrid-22k/host_src/
eas_types.h 237 EAS_U8 velocity; member in struct:s_ext_audio_event_tag
  /external/sonivox/arm-wt-22k/host_src/
eas_types.h 242 EAS_U8 velocity; member in struct:s_ext_audio_event_tag
  /frameworks/base/core/java/com/android/internal/widget/
RotarySelector.java 542 final int velocity = Math.max(mMinimumVelocity, rawVelocity); local
545 Math.abs(velocity / mDimpleSpacing));
549 velocity);
562 final int velocity = Math.min(-mMinimumVelocity, rawVelocity); local
565 Math.abs(velocity / mDimpleSpacing));
569 velocity);

Completed in 2488 milliseconds

1 2