| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_fc.c | 29 txfc->cwm = 0; 40 int ossl_quic_txfc_bump_cwm(QUIC_TXFC *txfc, uint64_t cwm) 42 if (cwm <= txfc->cwm) 45 txfc->cwm = cwm; 51 assert((txfc->swm + consumed) <= txfc->cwm); 52 return txfc->cwm - (consumed + txfc->swm); 113 return txfc->cwm; 136 rxfc->cwm = initial_window_size [all...] |
| quic_channel.c | 1931 /* Send the default CWM for a new RXFC. */ 3765 * If we already got peer TPs we need to apply the initial CWM credit 3770 uint64_t cwm; local 3773 cwm = ch->rx_init_max_stream_data_uni; 3775 cwm = ch->rx_init_max_stream_data_bidi_local; 3777 cwm = ch->rx_init_max_stream_data_bidi_remote; 3779 ossl_quic_txfc_bump_cwm(&qs->txfc, cwm);
|
| quic_txp.c | 2492 uint64_t cwm; local 2591 cwm = ossl_quic_rxfc_get_cwm(&stream->rxfc); 2594 cwm)) { 2717 uint64_t cwm = ossl_quic_rxfc_get_cwm(txp->args.conn_rxfc); local 2722 if (ossl_quic_wire_encode_frame_max_data(wpkt, cwm)) {
|
| quic_impl.c | 2525 uint64_t cwm = ossl_quic_txfc_get_cwm(&xso->stream->txfc); local 2526 uint64_t permitted = (cwm >= cur ? cwm - cur : 0);
|
| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| quic_fc.h | 28 uint64_t swm, cwm; member in struct:quic_txfc_st 46 * Bump the credit watermark (CWM) value. This is the 'On TX Window Updated' 48 * equal or higher CWM value. 50 * It returns 1 iff the call resulted in the CWM being bumped and 0 if it was 51 * not increased because it has already been called with an equal or higher CWM 55 int ossl_quic_txfc_bump_cwm(QUIC_TXFC *txfc, uint64_t cwm); 111 * Get the current CWM value. This is mainly only needed when generating a 137 uint64_t cwm, swm, rwm, esrwm, hwm, cur_window_size, max_window_size; member in struct:quic_rxfc_st 224 * Returns the current CWM which the RXFC thinks the peer should have. 248 * Returns the current credit. This is the CWM minus the SWM. This is intende [all...] |
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_txp_test.c | 265 #define OPK_CONN_TXFC_BUMP 20 /* Bump connection TXFC CWM */ 266 #define OPK_STREAM_TXFC_BUMP 21 /* Bump stream TXFC CWM */ 318 #define OP_CONN_TXFC_BUMP(cwm) \ 319 { OPK_CONN_TXFC_BUMP, (cwm) }, 320 #define OP_STREAM_TXFC_BUMP(id, cwm) \ 321 { OPK_STREAM_TXFC_BUMP, (cwm), (id) }, 377 uint64_t cwm; local 379 cwm = ossl_quic_rxfc_get_cwm(&h->stream_rxfc); 381 if (!TEST_true(ossl_quic_rxfc_on_rx_stream_frame(&h->stream_rxfc, cwm, 0)) 382 || !TEST_true(ossl_quic_rxfc_on_retire(&h->stream_rxfc, cwm, [all...] |
| /src/sys/external/bsd/drm2/dist/drm/i915/ |
| intel_pm.c | 2307 int cwm, srwm = 1; local 2389 cwm = 2; 2431 planea_wm, planeb_wm, cwm, srwm); 2434 fwater_hi = (cwm & 0x1f);
|