Home
last modified time | relevance | path

Searched refs:maxSpeed_ (Results 1 – 4 of 4) sorted by relevance

/dports/www/aria2/aria2-1.36.0/src/
H A DSpeedCalc.cc48 SpeedCalc::SpeedCalc() : accumulatedLength_(0), bytesWindow_(0), maxSpeed_(0) {} in SpeedCalc()
56 maxSpeed_ = 0; in reset()
84 maxSpeed_ = std::max(speed, maxSpeed_); in calculateSpeed()
H A DSpeedCalc.h52 int maxSpeed_; variable
66 int getMaxSpeed() const { return maxSpeed_; } in getMaxSpeed()
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Navigation/
H A DCrowdAgent.cpp86 maxSpeed_(DEFAULT_AGENT_MAX_SPEED), in CrowdAgent()
115 URHO3D_ATTRIBUTE("Max Speed", float, maxSpeed_, DEFAULT_AGENT_MAX_SPEED, AM_DEFAULT); in RegisterObject()
128 maxSpeed_ = Max(0.f, maxSpeed_); in ApplyAttributes()
260 params.maxSpeed = maxSpeed_; in UpdateParameters()
391 if (maxSpeed != maxSpeed_ && maxSpeed >= 0.f) in SetMaxSpeed()
393 maxSpeed_ = maxSpeed; in SetMaxSpeed()
H A DCrowdAgent.h152 float GetMaxSpeed() const { return maxSpeed_; } in GetMaxSpeed()
216 float maxSpeed_; variable