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

  /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/clang/test/CodeGen/
2007-03-05-DataLayout.c 20 vector vel; member in struct:bnode
33 #define Vel(x) ((x)->vel)
  /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);
  /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/quake/quake/src/QW/client/
glquake.h 167 vec3_t vel; member in struct:particle_s
glquake2.h 121 vec3_t vel; member in struct:particle_s
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...]
d_iface.h 46 vec3_t vel; member in struct:particle_s
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...]
  /external/quake/quake/src/WinQuake/
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
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_phys.cpp 1368 float *vel; local
    [all...]
glquake.h 157 vec3_t vel; member in struct:particle_s
  /external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
AndroidAudioRenderer.java 116 Vector3f vel = src.getVelocity(); local
212 Vector3f vel = listener.getVelocity(); local
  /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...]
  /frameworks/base/core/java/android/inputmethodservice/
KeyboardView.java 1538 float vel = (dist\/dur) * units; \/\/ pixels\/frame. local
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
KeyboardView.java 1487 float vel = (dist\/dur) * units; local
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/keyguard/
PagedView.java 2268 PointF vel = new PointF(mVelocityTracker.getXVelocity(), local
    [all...]

Completed in 1009 milliseconds