Home
last modified time | relevance | path

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

/src/crypto/openssl/ssl/quic/
H A Dquic_channel.c3831 const uint64_t *p_next_ordinal = ch_get_local_stream_next_ordinal_ptr(ch, is_uni); in ossl_quic_channel_is_new_local_stream_admissible() local
3834 *p_next_ordinal, in ossl_quic_channel_is_new_local_stream_admissible()
3841 const uint64_t *p_next_ordinal, *p_max; in ossl_quic_channel_get_local_stream_count_avail() local
3843 p_next_ordinal = ch_get_local_stream_next_ordinal_ptr((QUIC_CHANNEL *)ch, in ossl_quic_channel_get_local_stream_count_avail()
3847 return *p_max - *p_next_ordinal; in ossl_quic_channel_get_local_stream_count_avail()
3861 uint64_t *p_next_ordinal; in ossl_quic_channel_new_stream_local() local
3866 p_next_ordinal = ch_get_local_stream_next_ordinal_ptr(ch, is_uni); in ossl_quic_channel_new_stream_local()
3873 if (*p_next_ordinal >= ((uint64_t)1) << 62) in ossl_quic_channel_new_stream_local()
3876 stream_id = ((*p_next_ordinal) << 2) | type; in ossl_quic_channel_new_stream_local()
3885 ++*p_next_ordinal; in ossl_quic_channel_new_stream_local()