Searched refs:tfrc_ewma (Results 1 - 4 of 4) sorted by relevance
/kernel/linux/linux-5.10/net/dccp/ccids/lib/ |
H A D | tfrc.h | 46 * tfrc_ewma - Exponentially weighted moving average 49 static inline u32 tfrc_ewma(const u32 avg, const u32 newval, const u8 weight) in tfrc_ewma() function
|
/kernel/linux/linux-6.6/net/dccp/ccids/lib/ |
H A D | tfrc.h | 46 * tfrc_ewma - Exponentially weighted moving average 49 static inline u32 tfrc_ewma(const u32 avg, const u32 newval, const u8 weight) in tfrc_ewma() function
|
/kernel/linux/linux-5.10/net/dccp/ccids/ |
H A D | ccid3.c | 162 hc->tx_s = tfrc_ewma(hc->tx_s, len, 9); in ccid3_hc_tx_update_s() 383 hc->tx_rtt = tfrc_ewma(hc->tx_rtt, r_sample, 9); in ccid3_hc_tx_packet_recv() 731 hc->rx_s = tfrc_ewma(hc->rx_s, payload, 9); in ccid3_hc_rx_packet_recv() 761 hc->rx_rtt = tfrc_ewma(hc->rx_rtt, sample, 9); in ccid3_hc_rx_packet_recv()
|
/kernel/linux/linux-6.6/net/dccp/ccids/ |
H A D | ccid3.c | 166 hc->tx_s = tfrc_ewma(hc->tx_s, len, 9); in ccid3_hc_tx_update_s() 388 hc->tx_rtt = tfrc_ewma(hc->tx_rtt, r_sample, 9); in ccid3_hc_tx_packet_recv() 737 hc->rx_s = tfrc_ewma(hc->rx_s, payload, 9); in ccid3_hc_rx_packet_recv() 767 hc->rx_rtt = tfrc_ewma(hc->rx_rtt, sample, 9); in ccid3_hc_rx_packet_recv()
|
Completed in 7 milliseconds