OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:smoothed_rtt_
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/net/quic/congestion_control/
inter_arrival_state_machine.cc
25
smoothed_rtt_
(QuicTime::Delta::FromMilliseconds(kInitialRttMs)),
44
if (current_time.Subtract(last_increase_event_) <
smoothed_rtt_
) {
82
if (current_time.Subtract(last_decrease_event_) <
smoothed_rtt_
) {
128
smoothed_rtt_
= rtt;
133
if (current_time.Subtract(last_loss_event_) <
smoothed_rtt_
) {
149
if (current_time.Subtract(last_delay_event_) <
smoothed_rtt_
) {
tcp_cubic_sender.cc
53
smoothed_rtt_
(QuicTime::Delta::Zero()),
205
if (
smoothed_rtt_
.IsZero()) {
208
return
smoothed_rtt_
;
213
smoothed_rtt_
.ToMicroseconds() + 4 * mean_deviation_.ToMicroseconds());
298
if (
smoothed_rtt_
.IsZero()) {
299
smoothed_rtt_
= rtt;
305
kBeta * abs(
smoothed_rtt_
.ToMicroseconds() - rtt.ToMicroseconds()));
306
smoothed_rtt_
= QuicTime::Delta::FromMicroseconds(
307
kOneMinusAlpha *
smoothed_rtt_
.ToMicroseconds() +
309
DVLOG(1) << "Cubic;
smoothed_rtt_
:" << smoothed_rtt_.ToMicroseconds(
[
all
...]
inter_arrival_state_machine.h
76
QuicTime::Delta
smoothed_rtt_
;
member in class:net::InterArrivalStateMachine
inter_arrival_sender.cc
29
smoothed_rtt_
(QuicTime::Delta::Zero()),
227
if (
smoothed_rtt_
.IsZero()) {
228
smoothed_rtt_
= rtt;
230
smoothed_rtt_
= QuicTime::Delta::FromMicroseconds(
231
kOneMinusAlpha *
smoothed_rtt_
.ToMicroseconds() +
234
state_machine_->set_rtt(
smoothed_rtt_
);
332
if (
smoothed_rtt_
.IsZero()) {
335
return
smoothed_rtt_
;
341
return
smoothed_rtt_
.Add(
smoothed_rtt_
);
[
all
...]
inter_arrival_sender.h
85
QuicTime::Delta
smoothed_rtt_
;
member in class:net::InterArrivalSender
tcp_cubic_sender.h
124
QuicTime::Delta
smoothed_rtt_
;
member in class:net::TcpCubicSender
Completed in 49 milliseconds