Home
last modified time | relevance | path

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

/dports/net-p2p/transmission-daemon/transmission-3.00/libtransmission/
H A Dbandwidth.h143 …_bandwidthSetDesiredSpeed_Bps(tr_bandwidth* bandwidth, tr_direction dir, unsigned int desiredSpeed) in tr_bandwidthSetDesiredSpeed_Bps() argument
146 bool const didChange = desiredSpeed != *value; in tr_bandwidthSetDesiredSpeed_Bps()
147 *value = desiredSpeed; in tr_bandwidthSetDesiredSpeed_Bps()
/dports/net-p2p/transmission-cli/transmission-3.00/libtransmission/
H A Dbandwidth.h143 …_bandwidthSetDesiredSpeed_Bps(tr_bandwidth* bandwidth, tr_direction dir, unsigned int desiredSpeed) in tr_bandwidthSetDesiredSpeed_Bps() argument
146 bool const didChange = desiredSpeed != *value; in tr_bandwidthSetDesiredSpeed_Bps()
147 *value = desiredSpeed; in tr_bandwidthSetDesiredSpeed_Bps()
/dports/net-p2p/transmission-gtk/transmission-3.00/libtransmission/
H A Dbandwidth.h143 …_bandwidthSetDesiredSpeed_Bps(tr_bandwidth* bandwidth, tr_direction dir, unsigned int desiredSpeed) in tr_bandwidthSetDesiredSpeed_Bps() argument
146 bool const didChange = desiredSpeed != *value; in tr_bandwidthSetDesiredSpeed_Bps()
147 *value = desiredSpeed; in tr_bandwidthSetDesiredSpeed_Bps()
/dports/net-p2p/transmission-qt/transmission-3.00/libtransmission/
H A Dbandwidth.h143 …_bandwidthSetDesiredSpeed_Bps(tr_bandwidth* bandwidth, tr_direction dir, unsigned int desiredSpeed) in tr_bandwidthSetDesiredSpeed_Bps() argument
146 bool const didChange = desiredSpeed != *value; in tr_bandwidthSetDesiredSpeed_Bps()
147 *value = desiredSpeed; in tr_bandwidthSetDesiredSpeed_Bps()
/dports/net-p2p/transmission-utils/transmission-3.00/libtransmission/
H A Dbandwidth.h143 …_bandwidthSetDesiredSpeed_Bps(tr_bandwidth* bandwidth, tr_direction dir, unsigned int desiredSpeed) in tr_bandwidthSetDesiredSpeed_Bps() argument
146 bool const didChange = desiredSpeed != *value; in tr_bandwidthSetDesiredSpeed_Bps()
147 *value = desiredSpeed; in tr_bandwidthSetDesiredSpeed_Bps()
/dports/www/transmission-web/transmission-3.00/libtransmission/
H A Dbandwidth.h143 …_bandwidthSetDesiredSpeed_Bps(tr_bandwidth* bandwidth, tr_direction dir, unsigned int desiredSpeed) in tr_bandwidthSetDesiredSpeed_Bps() argument
146 bool const didChange = desiredSpeed != *value; in tr_bandwidthSetDesiredSpeed_Bps()
147 *value = desiredSpeed; in tr_bandwidthSetDesiredSpeed_Bps()
/dports/games/openjk/OpenJK-07675e2/codeJK2/game/
H A Dg_active.cpp1546 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1559 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1567 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1580 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1588 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
2391 if ( ent->NPC->desiredSpeed > MIN_NPC_SPEED ) in ClientThink_real()
2395 ent->NPC->desiredSpeed = ceil(slowdownSpeed); in ClientThink_real()
2396 if ( ent->NPC->desiredSpeed < MIN_NPC_SPEED ) in ClientThink_real()
2398 ent->NPC->desiredSpeed = MIN_NPC_SPEED; in ClientThink_real()
2411 ent->NPC->desiredSpeed = 0; in ClientThink_real()
[all …]
H A Db_public.h292 int desiredSpeed; variable
420 saved_game.write<int32_t>(desiredSpeed); in sg_export()
525 saved_game.read<int32_t>(desiredSpeed); in sg_import()
/dports/science/chrono/chrono-7.0.1/src/tests/unit_tests/joints/
H A Dutest_JOINT_linactuator.cpp42 double desiredSpeed,
116 double desiredSpeed, // imposed translation speed in TestLinActuator() argument
158 plate->SetPos_dt(desiredSpeed * axis); in TestLinActuator()
174 auto actuator_fun = chrono_types::make_shared<ChFunction_Ramp>(0.0, desiredSpeed); in TestLinActuator()
/dports/games/bzflag-server/bzflag-2.4.22/src/bzflag/
H A DLocalPlayer.cxx47 desiredSpeed(0.0f), in LocalPlayer()
183 const float speedAdj = desiredSpeed * scale; in doSlideMotion()
311 float speed = desiredSpeed; in doUpdateMotion()
345 float speed = desiredSpeed; in doUpdateMotion()
475 float movementMax = desiredSpeed * delta; in doUpdateMotion()
925 (getFlag() == Flags::OscillationOverthruster && desiredSpeed < 0.0f && in getHitBuilding()
944 (hasOOflag && desiredSpeed < 0.0f && p[2] == 0.0f)); in getHitBuilding()
1088 desiredSpeed = 0.0f; in restart()
1139 float oldFrac = desiredSpeed / BZDBCache::tankSpeed; in setDesiredSpeed()
1159 desiredSpeed = BZDBCache::tankSpeed * fracOfMaxSpeed; in setDesiredSpeed()
[all …]
H A DLocalPlayer.h154 float desiredSpeed; variable
/dports/games/bzflag/bzflag-2.4.22/src/bzflag/
H A DLocalPlayer.cxx47 desiredSpeed(0.0f), in LocalPlayer()
183 const float speedAdj = desiredSpeed * scale; in doSlideMotion()
311 float speed = desiredSpeed; in doUpdateMotion()
345 float speed = desiredSpeed; in doUpdateMotion()
475 float movementMax = desiredSpeed * delta; in doUpdateMotion()
925 (getFlag() == Flags::OscillationOverthruster && desiredSpeed < 0.0f && in getHitBuilding()
944 (hasOOflag && desiredSpeed < 0.0f && p[2] == 0.0f)); in getHitBuilding()
1088 desiredSpeed = 0.0f; in restart()
1139 float oldFrac = desiredSpeed / BZDBCache::tankSpeed; in setDesiredSpeed()
1159 desiredSpeed = BZDBCache::tankSpeed * fracOfMaxSpeed; in setDesiredSpeed()
[all …]
H A DLocalPlayer.h154 float desiredSpeed; variable
/dports/games/openjk/OpenJK-07675e2/codemp/game/
H A Dg_active.c1409 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1422 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1430 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1443 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
1451 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
2231 if ( ent->NPC->desiredSpeed > MIN_NPC_SPEED ) in ClientThink_real()
2235 ent->NPC->desiredSpeed = ceil(slowdownSpeed); in ClientThink_real()
2236 if ( ent->NPC->desiredSpeed < MIN_NPC_SPEED ) in ClientThink_real()
2238 ent->NPC->desiredSpeed = MIN_NPC_SPEED; in ClientThink_real()
2251 ent->NPC->desiredSpeed = 0; in ClientThink_real()
[all …]
H A Db_public.h229 int desiredSpeed; member
/dports/games/openjk/OpenJK-07675e2/codeJK2/cgame/
H A Dcg_camera.cpp902 float adjust = 0.0f, desiredSpeed = 0.0f; in CGCam_TrackUpdate() local
946 desiredSpeed = (adjust);// * cg.frametime/100.0f);//cg.frameInterpolation); in CGCam_TrackUpdate()
955 client_camera.speed = desiredSpeed; in CGCam_TrackUpdate()
957 else if ( client_camera.speed - desiredSpeed > max_allowed_accel ) in CGCam_TrackUpdate()
961 else if ( desiredSpeed - client_camera.speed > max_allowed_accel ) in CGCam_TrackUpdate()
967 client_camera.speed = desiredSpeed; in CGCam_TrackUpdate()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/DetourCrowd/source/
H A DDetourCrowd.cpp563 ag->desiredSpeed = 0; in addAgent()
1204 ag->desiredSpeed = dtVlen(ag->targetPos); in update()
1218 ag->desiredSpeed = ag->params.maxSpeed; in update()
1219 dtVscale(dvel, dvel, ag->desiredSpeed * speedScale); in update()
1258 const float desiredSqr = dtSqr(ag->desiredSpeed); in update()
1308 ns = m_obstacleQuery->sampleVelocityAdaptive(ag->npos, ag->params.radius, ag->desiredSpeed, in update()
1313 ns = m_obstacleQuery->sampleVelocityGrid(ag->npos, ag->params.radius, ag->desiredSpeed, in update()
/dports/graphics/recastnavigation/recastnavigation-e75adf86f91eb3082220085e42dda62679f9a3ea/DetourCrowd/Source/
H A DDetourCrowd.cpp555 ag->desiredSpeed = 0; in addAgent()
1194 ag->desiredSpeed = dtVlen(ag->targetPos); in update()
1208 ag->desiredSpeed = ag->params.maxSpeed; in update()
1209 dtVscale(dvel, dvel, ag->desiredSpeed * speedScale); in update()
1248 const float desiredSqr = dtSqr(ag->desiredSpeed); in update()
1298 ns = m_obstacleQuery->sampleVelocityAdaptive(ag->npos, ag->params.radius, ag->desiredSpeed, in update()
1303 ns = m_obstacleQuery->sampleVelocityGrid(ag->npos, ag->params.radius, ag->desiredSpeed, in update()
/dports/games/openjk/OpenJK-07675e2/code/game/
H A Dg_active.cpp4098 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
4111 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
4119 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
4132 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
4140 ent->NPC->currentSpeed = ent->NPC->desiredSpeed; in NPC_Accelerate()
4455 if ( ent->NPC->desiredSpeed > MIN_NPC_SPEED ) in ClientAlterSpeed()
4459 ent->NPC->desiredSpeed = ceil(slowdownSpeed); in ClientAlterSpeed()
4460 if ( ent->NPC->desiredSpeed < MIN_NPC_SPEED ) in ClientAlterSpeed()
4462 ent->NPC->desiredSpeed = MIN_NPC_SPEED; in ClientAlterSpeed()
4475 ent->NPC->desiredSpeed = 0; in ClientAlterSpeed()
[all …]
H A Db_public.h315 int desiredSpeed; variable
465 saved_game.write<int32_t>(desiredSpeed); in sg_export()
587 saved_game.read<int32_t>(desiredSpeed); in sg_import()
H A Dg_navigator.h223 …actor, const CVec3& pos, float slowingDistance=0.0f, float weight=1.0f, float desiredSpeed=0.0f);
H A Dg_navigator.cpp4714 …::Seek(gentity_t* actor, const CVec3& pos, float slowingDistance, float weight, float desiredSpeed) in Seek() argument
4733 suser.mDesiredSpeed = (desiredSpeed!=0.0f)?(desiredSpeed):(suser.mMaxSpeed); in Seek()
/dports/games/openjk/OpenJK-07675e2/code/cgame/
H A Dcg_camera.cpp937 float adjust = 0.0f, desiredSpeed = 0.0f; in CGCam_TrackUpdate() local
981 desiredSpeed = (adjust);// * cg.frametime/100.0f);//cg.frameInterpolation); in CGCam_TrackUpdate()
990 client_camera.speed = desiredSpeed; in CGCam_TrackUpdate()
992 else if ( client_camera.speed - desiredSpeed > max_allowed_accel ) in CGCam_TrackUpdate()
996 else if ( desiredSpeed - client_camera.speed > max_allowed_accel ) in CGCam_TrackUpdate()
1002 client_camera.speed = desiredSpeed; in CGCam_TrackUpdate()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/ThirdParty/DetourCrowd/include/
H A DDetourCrowd.h145 float desiredSpeed; member
/dports/graphics/recastnavigation/recastnavigation-e75adf86f91eb3082220085e42dda62679f9a3ea/DetourCrowd/Include/
H A DDetourCrowd.h143 float desiredSpeed; member