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

  /external/sonivox/arm-fm-22k/lib_src/
eas_otadata.h 74 EAS_U8 velocity; /* current volume */ member in struct:__anon5666
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:__anon5716
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:__anon5768
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/quake/quake/src/QW/client/
pmove.h 56 vec3_t velocity; member in struct:__anon5049
client.h 42 vec3_t velocity; member in struct:__anon4953
  /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:__anon5246
  /frameworks/base/core/java/android/widget/
Scroller.java 137 * Returns the current velocity.
139 * @return The original velocity less the deceleration. Result may be
285 * depend on the initial velocity of the fling.
289 * @param velocityX Initial velocity of the fling (X) measured in pixels per
291 * @param velocityY Initial velocity of the fling (Y) measured in pixels per
307 float velocity = (float)Math.hypot(velocityX, velocityY); local
309 mVelocity = velocity;
310 mDuration = (int) (1000 * velocity / mDeceleration); // Duration is in
316 mCoeffX = velocity == 0 ? 1.0f : velocityX / velocity;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
PointerLocationView.java 149 int velocity = ps.mVelocity == null ? 0 : (int) (ps.mVelocity.getXVelocity() * 1000); local
150 canvas.drawText("Xv: " + velocity, 1 + itemW * 3, base, mTextPaint);
153 velocity = ps.mVelocity == null ? 0 : (int) (ps.mVelocity.getYVelocity() * 1000);
154 canvas.drawText("Yv: " + velocity, 1 + itemW * 4, base, mTextPaint);
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);
  /external/quake/quake/src/QW/progs/
progdefs.h 71 vec3_t velocity; member in struct:__anon5160
  /external/quake/quake/src/QW/server/
progdefs.h 90 vec3_t velocity; member in struct:__anon5208
  /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
  /packages/apps/Gallery3D/src/com/cooliris/media/
TimeBar.java 356 float velocity; local
359 velocity = -(float) Math.pow((1f - x / autoScrollMargin), 2);
361 velocity = (float) Math.pow(1f - (mWidth - x) / autoScrollMargin, 2);
363 velocity = 0;
365 mScroll += velocity * 400f * dt;

Completed in 387 milliseconds