Lines Matching refs:cwm
29 txfc->cwm = 0; in OSSL_SAFE_MATH_UNSIGNED()
40 int ossl_quic_txfc_bump_cwm(QUIC_TXFC *txfc, uint64_t cwm) in ossl_quic_txfc_bump_cwm() argument
42 if (cwm <= txfc->cwm) in ossl_quic_txfc_bump_cwm()
45 txfc->cwm = cwm; in ossl_quic_txfc_bump_cwm()
51 assert((txfc->swm + consumed) <= txfc->cwm); in ossl_quic_txfc_get_credit_local()
52 return txfc->cwm - (consumed + txfc->swm); in ossl_quic_txfc_get_credit_local()
113 return txfc->cwm; in ossl_quic_txfc_get_cwm()
136 rxfc->cwm = initial_window_size; in ossl_quic_rxfc_init()
187 uint64_t credit = rxfc->cwm - rxfc->swm; in on_rx_controlled_bytes()
237 uint64_t window_rem = rxfc->cwm - rxfc->rwm; in rxfc_cwm_bump_desired()
321 if (new_cwm > rxfc->cwm) { in rxfc_update_cwm()
322 rxfc->cwm = new_cwm; in rxfc_update_cwm()
364 return rxfc->cwm; in ossl_quic_rxfc_get_cwm()