Home
last modified time | relevance | path

Searched refs:accumulatedLength_ (Results 1 – 2 of 2) 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()
54 accumulatedLength_ = 0; in reset()
127 accumulatedLength_ += bytes; in update()
138 int speed = accumulatedLength_ * 1000 / milliElapsed; in calculateAvgSpeed()
H A DSpeedCalc.h50 int64_t accumulatedLength_; variable