| /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/ssl/quic/ |
| quic_channel.c | 1931 /* Send the default CWM for a new RXFC. */ 3763 * If we already got peer TPs we need to apply the initial CWM credit 3768 uint64_t cwm; local 3771 cwm = ch->rx_init_max_stream_data_uni; 3773 cwm = ch->rx_init_max_stream_data_bidi_local; 3775 cwm = ch->rx_init_max_stream_data_bidi_remote; 3777 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 | 2519 uint64_t cwm = ossl_quic_txfc_get_cwm(&xso->stream->txfc); local 2520 uint64_t permitted = (cwm >= cur ? cwm - cur : 0);
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_txp_test.c | 279 #define OPK_CONN_TXFC_BUMP 20 /* Bump connection TXFC CWM */ 280 #define OPK_STREAM_TXFC_BUMP 21 /* Bump stream TXFC CWM */ 332 #define OP_CONN_TXFC_BUMP(cwm) \ 333 { OPK_CONN_TXFC_BUMP, (cwm) }, 334 #define OP_STREAM_TXFC_BUMP(id, cwm) \ 335 { OPK_STREAM_TXFC_BUMP, (cwm), (id) }, 391 uint64_t cwm; local 393 cwm = ossl_quic_rxfc_get_cwm(&h->stream_rxfc); 395 if (!TEST_true(ossl_quic_rxfc_on_rx_stream_frame(&h->stream_rxfc, cwm, 0)) 396 || !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);
|