HomeSort by relevance Sort by last modified time
    Searched refs:smoothed_rtt_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/net/quic/congestion_control/
rtt_stats.cc 29 smoothed_rtt_(QuicTime::Delta::Zero()),
36 return !smoothed_rtt_.IsZero();
48 std::abs(smoothed_rtt_.Subtract(latest_rtt_).ToMicroseconds())));
49 smoothed_rtt_ = max(smoothed_rtt_, latest_rtt_);
82 smoothed_rtt_ = rtt_sample;
88 kBeta * std::abs(smoothed_rtt_.Subtract(rtt_sample).ToMicroseconds()));
89 smoothed_rtt_ = smoothed_rtt_.Multiply(kOneMinusAlpha).Add(
91 DVLOG(1) << " smoothed_rtt(us):" << smoothed_rtt_.ToMicroseconds(
    [all...]
rtt_stats.h 96 QuicTime::Delta smoothed_rtt_; member in class:net::RttStats

Completed in 77 milliseconds