HomeSort by relevance Sort by last modified time
    Searched refs:vel (Results 1 - 25 of 36) sorted by null

1 2

  /external/quake/quake/src/QW/client/
r_part.c 126 VectorCopy (vec3_origin, p->vel);
163 p->vel[j] = (rand()%512)-256;
172 p->vel[j] = (rand()%512)-256;
207 p->vel[j] = (rand()%512)-256;
217 p->vel[j] = (rand()%512)-256;
257 p->vel[j] = dir[j]*15;// + (rand()%300)-150;
273 float vel; local
300 vel = 50 + (rand()&63);
301 VectorScale (dir, vel, p->vel);
315 float vel; local
    [all...]
pmove.c 326 float *vel; local
336 vel = pmove.velocity;
338 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1] + vel[2]*vel[2]);
341 vel[0] = 0;
342 vel[1] = 0
    [all...]
d_iface.h 46 vec3_t vel; member in struct:particle_s
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestLightRadius.java 48 float pos, vel=1; field in class:TestLightRadius
98 pos += tpf * vel * 5f;
100 vel *= -1;
102 vel *= -1;
  /external/quake/quake/src/WinQuake/
r_part.cpp 72 float vel; local
103 vel = 50 + (rand()&63);
104 VectorScale (dir, vel, p->vel);
236 VectorCopy (vec3_origin, p->vel);
300 p->vel[j] = (rand()%512)-256;
309 p->vel[j] = (rand()%512)-256;
344 p->vel[j] = (rand()%512)-256;
378 p->vel[j] = (rand()%512)-256;
388 p->vel[j] = (rand()%512)-256
463 float vel; local
505 float vel; local
    [all...]
sv_user.cpp 124 float *vel; local
130 vel = velocity;
132 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1]);
137 start[0] = stop[0] = origin[0] + vel[0]/speed*16;
138 start[1] = stop[1] = origin[1] + vel[1]/speed*16;
157 vel[0] = vel[0] * newspeed
    [all...]
d_iface.h 47 vec3_t vel; member in struct:particle_s
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
UniverseBackground.java 322 void performFling(int y, float vel, boolean always) {
324 Slog.d(TAG, "panel: will fling, y=" + y + " vel=" + vel);
330 mAnimVel = vel;
336 vel > mFlingCollapseMinVelocityPx
338 vel > -mFlingExpandMinVelocityPx))) {
342 if (vel < 0) {
349 if (vel > 0) {
355 vel > mFlingExpandMinVelocityPx
357 vel > -mFlingCollapseMinVelocityPx)))
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
FlyByCamera.java 293 Vector3f vel = new Vector3f(0, value * moveSpeed, 0); local
297 motionAllowed.checkMotionAllowed(pos, vel);
299 pos.addLocal(vel);
305 Vector3f vel = new Vector3f(); local
309 cam.getLeft(vel);
311 cam.getDirection(vel);
313 vel.multLocal(value * moveSpeed);
316 motionAllowed.checkMotionAllowed(pos, vel);
318 pos.addLocal(vel);
  /external/clang/test/CodeGen/
2007-03-05-DataLayout.c 20 vector vel; member in struct:bnode
33 #define Vel(x) ((x)->vel)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NotificationPanelView.java 63 public void fling(float vel, boolean always) {
67 "fling " + ((vel > 0) ? "open" : "closed"),
68 "notifications,v=" + vel);
70 super.fling(vel, always);
SettingsPanelView.java 106 public void fling(float vel, boolean always) {
110 "fling " + ((vel > 0) ? "open" : "closed"),
111 "settings,v=" + vel);
113 super.fling(vel, always);
PanelView.java 424 float vel = 0, yVel = 0, xVel = 0;
442 vel = (float)Math.hypot(yVel, xVel);
443 if (vel > mFlingGestureMaxOutputVelocityPx) {
444 vel = mFlingGestureMaxOutputVelocityPx;
455 || vel < mFlingExpandMinVelocityPx
457 vel = 0;
461 vel = -vel;
464 if (DEBUG) LOG("gesture: dy=%f vel=(%f,%f) vlinear=%f",
467 vel);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
DeleteDropTarget.java 258 DragObject d, PointF vel, ViewConfiguration config) {
266 float velocity = Math.abs(vel.length());
269 int offsetX = (int) (offsetY / (vel.y / vel.x));
323 public FlingAlongVectorAnimatorUpdateListener(DragLayer dragLayer, PointF vel, Rect from,
326 mVelocity = vel;
361 DragObject d, PointF vel, final long startTime, final int duration,
366 return new FlingAlongVectorAnimatorUpdateListener(dragLayer, vel, from, startTime,
370 public void onFlingToDelete(final DragObject d, int x, int y, PointF vel) {
415 updateCb = createFlingToTrashAnimatorListener(dragLayer, d, vel, config)
    [all...]
DragController.java 631 PointF vel = new PointF(mVelocityTracker.getXVelocity(),
634 float theta = (float) Math.acos(((vel.x * upVec.x) + (vel.y * upVec.y)) /
635 (vel.length() * upVec.length()));
637 return vel;
643 private void dropOnFlingToDeleteTarget(float x, float y, PointF vel) {
664 vel);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
seqmid.h 368 * \param vel velocity
371 #define snd_seq_ev_set_note(ev, ch, key, vel, dur) \
376 (ev)->data.note.velocity = (vel),\
384 * \param vel velocity
386 #define snd_seq_ev_set_noteon(ev, ch, key, vel) \
391 (ev)->data.note.velocity = (vel))
398 * \param vel velocity
400 #define snd_seq_ev_set_noteoff(ev, ch, key, vel) \
405 (ev)->data.note.velocity = (vel))
412 * \param vel velocit
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
seqmid.h 368 * \param vel velocity
371 #define snd_seq_ev_set_note(ev, ch, key, vel, dur) \
376 (ev)->data.note.velocity = (vel),\
384 * \param vel velocity
386 #define snd_seq_ev_set_noteon(ev, ch, key, vel) \
391 (ev)->data.note.velocity = (vel))
398 * \param vel velocity
400 #define snd_seq_ev_set_noteoff(ev, ch, key, vel) \
405 (ev)->data.note.velocity = (vel))
412 * \param vel velocit
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
seqmid.h 368 * \param vel velocity
371 #define snd_seq_ev_set_note(ev, ch, key, vel, dur) \
376 (ev)->data.note.velocity = (vel),\
384 * \param vel velocity
386 #define snd_seq_ev_set_noteon(ev, ch, key, vel) \
391 (ev)->data.note.velocity = (vel))
398 * \param vel velocity
400 #define snd_seq_ev_set_noteoff(ev, ch, key, vel) \
405 (ev)->data.note.velocity = (vel))
412 * \param vel velocit
    [all...]
  /external/quake/quake/src/QW/progs/
weapons.qc 79 local vector vel;
81 vel = normalize (self.velocity);
82 vel = normalize(vel + v_up*(random()- 0.5) + v_right*(random()- 0.5));
83 vel = vel + 2*trace_plane_normal;
84 vel = vel * 200;
86 return vel;
95 void(vector org, vector vel) SpawnMeatSpray =
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthListView.java 118 float vel = mTracker.getYVelocity (); local
119 if (Math.abs(vel) > MIN_VELOCITY_FOR_FLING) {
120 doFling(vel);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_midi_emul.h 83 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
84 void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
85 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
soundfont.h 115 int snd_soundfont_search_zone(struct snd_sf_list *sflist, int *notep, int vel,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
seq_midi_emul.h 83 void (*note_on)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
84 void (*note_off)(void *private_data,int note, int vel, struct snd_midi_channel *chan); /* release note */
85 void (*key_press)(void *private_data, int note, int vel, struct snd_midi_channel *chan);
soundfont.h 115 int snd_soundfont_search_zone(struct snd_sf_list *sflist, int *notep, int vel,
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
LwjglAudioRenderer.java 330 Vector3f vel = src.getVelocity();
331 alSource3f(id, AL_VELOCITY, vel.x, vel.y, vel.z);
453 Vector3f vel = src.getVelocity(); local
455 alSource3f(id, AL_VELOCITY, vel.x, vel.y, vel.z);
537 Vector3f vel = listener.getVelocity(); local
538 alListener3f(AL_VELOCITY, vel.x, vel.y, vel.z);
549 Vector3f vel = listener.getVelocity(); local
    [all...]

Completed in 834 milliseconds

1 2