Home
last modified time | relevance | path

Searched refs:cur_cwnd (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/quiche/src/recovery/
Dreno.rs242 let cur_cwnd = in reno_congestion_avoidance() localVariable
244 assert_eq!(r.cwnd(), cur_cwnd); in reno_congestion_avoidance()
261 assert_eq!(r.cwnd(), cur_cwnd + recovery::MAX_DATAGRAM_SIZE); in reno_congestion_avoidance()
Dcubic.rs394 let cur_cwnd = (prev_cwnd as f64 * BETA_CUBIC) as usize; in cubic_congestion_avoidance() localVariable
395 assert_eq!(r.cwnd(), cur_cwnd); in cubic_congestion_avoidance()
411 assert_eq!(r.cwnd(), cur_cwnd + recovery::MAX_DATAGRAM_SIZE); in cubic_congestion_avoidance()