Home
last modified time | relevance | path

Searched refs:vel (Results 1 – 25 of 26) sorted by relevance

12

/external/quake/quake/src/QW/client/
Dr_part.c126 VectorCopy (vec3_origin, p->vel); in R_ReadPointFile_f()
163 p->vel[j] = (rand()%512)-256; in R_ParticleExplosion()
172 p->vel[j] = (rand()%512)-256; in R_ParticleExplosion()
207 p->vel[j] = (rand()%512)-256; in R_BlobExplosion()
217 p->vel[j] = (rand()%512)-256; in R_BlobExplosion()
257 p->vel[j] = dir[j]*15;// + (rand()%300)-150; in R_RunParticleEffect()
273 float vel; in R_LavaSplash() local
300 vel = 50 + (rand()&63); in R_LavaSplash()
301 VectorScale (dir, vel, p->vel); in R_LavaSplash()
315 float vel; in R_TeleportSplash() local
[all …]
Dpmove.c326 float *vel; in PM_Friction() local
336 vel = pmove.velocity; in PM_Friction()
338 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1] + vel[2]*vel[2]); in PM_Friction()
341 vel[0] = 0; in PM_Friction()
342 vel[1] = 0; in PM_Friction()
350 start[0] = stop[0] = pmove.origin[0] + vel[0]/speed*16; in PM_Friction()
351 start[1] = stop[1] = pmove.origin[1] + vel[1]/speed*16; in PM_Friction()
379 vel[0] = vel[0] * newspeed; in PM_Friction()
380 vel[1] = vel[1] * newspeed; in PM_Friction()
381 vel[2] = vel[2] * newspeed; in PM_Friction()
Dd_iface.h46 vec3_t vel; member
Dglquake2.h121 vec3_t vel; member
Dglquake.h167 vec3_t vel; member
/external/quake/quake/src/WinQuake/
Dr_part.cpp72 float vel; in R_DarkFieldParticles() local
103 vel = 50 + (rand()&63); in R_DarkFieldParticles()
104 VectorScale (dir, vel, p->vel); in R_DarkFieldParticles()
236 VectorCopy (vec3_origin, p->vel); in R_ReadPointFile_f()
300 p->vel[j] = (rand()%512)-256; in R_ParticleExplosion()
309 p->vel[j] = (rand()%512)-256; in R_ParticleExplosion()
344 p->vel[j] = (rand()%512)-256; in R_ParticleExplosion2()
378 p->vel[j] = (rand()%512)-256; in R_BlobExplosion()
388 p->vel[j] = (rand()%512)-256; in R_BlobExplosion()
425 p->vel[j] = (rand()%512)-256; in R_RunParticleEffect()
[all …]
Dsv_user.cpp124 float *vel; in SV_UserFriction() local
130 vel = velocity; in SV_UserFriction()
132 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1]); in SV_UserFriction()
137 start[0] = stop[0] = origin[0] + vel[0]/speed*16; in SV_UserFriction()
138 start[1] = stop[1] = origin[1] + vel[1]/speed*16; in SV_UserFriction()
157 vel[0] = vel[0] * newspeed; in SV_UserFriction()
158 vel[1] = vel[1] * newspeed; in SV_UserFriction()
159 vel[2] = vel[2] * newspeed; in SV_UserFriction()
Dsv_phys.cpp1368 float *vel; in SV_Physics_Step() local
1410 vel = ent->u.v.velocity; in SV_Physics_Step()
1411 speed = sqrt(vel[0]*vel[0] +vel[1]*vel[1]); in SV_Physics_Step()
1423 vel[0] = vel[0] * newspeed; in SV_Physics_Step()
1424 vel[1] = vel[1] * newspeed; in SV_Physics_Step()
Dd_iface.h47 vec3_t vel; member
Dglquake.h157 vec3_t vel; member
/external/jmonkeyengine/engine/src/core/com/jme3/input/
DFlyByCamera.java293 Vector3f vel = new Vector3f(0, value * moveSpeed, 0); in riseCamera() local
297 motionAllowed.checkMotionAllowed(pos, vel); in riseCamera()
299 pos.addLocal(vel); in riseCamera()
305 Vector3f vel = new Vector3f(); in moveCamera() local
309 cam.getLeft(vel); in moveCamera()
311 cam.getDirection(vel); in moveCamera()
313 vel.multLocal(value * moveSpeed); in moveCamera()
316 motionAllowed.checkMotionAllowed(pos, vel); in moveCamera()
318 pos.addLocal(vel); in moveCamera()
/external/jmonkeyengine/engine/src/test/jme3test/light/
DTestLightRadius.java48 float pos, vel=1; field in TestLightRadius
98 pos += tpf * vel * 5f; in simpleUpdate()
100 vel *= -1; in simpleUpdate()
102 vel *= -1; in simpleUpdate()
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/audio/lwjgl/
DLwjglAudioRenderer.java330 Vector3f vel = src.getVelocity(); in updateSourceParam()
331 alSource3f(id, AL_VELOCITY, vel.x, vel.y, vel.z); in updateSourceParam()
453 Vector3f vel = src.getVelocity(); in setSourceParams() local
455 alSource3f(id, AL_VELOCITY, vel.x, vel.y, vel.z); in setSourceParams()
537 Vector3f vel = listener.getVelocity(); in updateListenerParam() local
538 alListener3f(AL_VELOCITY, vel.x, vel.y, vel.z); in updateListenerParam()
549 Vector3f vel = listener.getVelocity(); in setListenerParams() local
554 alListener3f(AL_VELOCITY, vel.x, vel.y, vel.z); in setListenerParams()
/external/quake/quake/src/QW/progs/
Dweapons.qc79 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 =
107 missile.velocity = vel;
144 local vector vel;
146 vel = wall_velocity () * 0.2;
[all …]
/external/clang/test/CodeGen/
D2007-03-05-DataLayout.c20 vector vel; member
33 #define Vel(x) ((x)->vel)
/external/icu4c/data/curr/
Dpt_PT.txt37 "Marco bósnio-herzegóvino conversível",
41 "Franco belga (convertível)",
Dpt.txt108 "Marco bósnio-herzegovino conversível",
124 "Franco belga (conversível)",
300 "Peso cubano conversível",
368 "Peseta espanhola (conta conversível)",
612 "Franco conversível de Luxemburgo",
1144 "Dinar conversível iugoslavo",
1277 one{"Marca conversível da Bósnia Herzegovina"}
1293 one{"Franco belga (conversível)"}
1469 one{"Peso cubano conversível"}
1537 one{"Peseta espanhola (conta conversível)"}
[all …]
/external/jmonkeyengine/engine/src/android/com/jme3/audio/android/
DAndroidAudioRenderer.java116 Vector3f vel = src.getVelocity(); in updateSourceParam() local
212 Vector3f vel = listener.getVelocity(); in updateListenerParam() local
/external/webkit/Source/WebKit/gtk/po/
Dpt.po475 "O valor pelo qual o nível de zoom é alterado ao ser aumentado ou diminuído."
634 "Redimensionar automaticamente janela do nível superior quando é pedido pela "
691 msgstr "Possível Editar"
707 msgstr "Nível de zoom"
711 msgstr "O nível de zoom do conteúdo"
Dpt_BR.po625 "Redimensiona automaticamente a janela de nível superior quando uma página "
684 msgstr "Editável"
700 msgstr "Nível de zoom"
704 msgstr "O nível de zoom do conteúdo"
749 msgstr "Este é um índice pesquisável. Digite as palavras-chave de pesquisa:"
Dhu.po501 msgstr "A helyesírás-ellenőrzéshez használandó nyelvek vesszővel elválasztott listája"
/external/icu4c/data/lang/
Dro.txt62 cy{"velșă"}
Dcs.txt111 cy{"velština"}
Dbs.txt116 cy{"velški"}
Dhr.txt118 cy{"velški"}

12