Home
last modified time | relevance | path

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

/third_party/node/deps/brotli/c/enc/
Dliteral_cost.c63 size_t in_window = BROTLI_MIN(size_t, window_half, len); in EstimateBitCostsForLiteralsUTF8() local
70 for (i = 0; i < in_window; ++i) { in EstimateBitCostsForLiteralsUTF8()
135 size_t in_window = BROTLI_MIN(size_t, window_half, len); in BrotliEstimateBitCostsForLiterals() local
139 for (i = 0; i < in_window; ++i) { in BrotliEstimateBitCostsForLiterals()
149 --in_window; in BrotliEstimateBitCostsForLiterals()
154 ++in_window; in BrotliEstimateBitCostsForLiterals()
161 double lit_cost = FastLog2(in_window) - FastLog2(histo); in BrotliEstimateBitCostsForLiterals()
/third_party/skia/third_party/externals/brotli/c/enc/
Dliteral_cost.c63 size_t in_window = BROTLI_MIN(size_t, window_half, len); in EstimateBitCostsForLiteralsUTF8() local
70 for (i = 0; i < in_window; ++i) { in EstimateBitCostsForLiteralsUTF8()
135 size_t in_window = BROTLI_MIN(size_t, window_half, len); in BrotliEstimateBitCostsForLiterals() local
139 for (i = 0; i < in_window; ++i) { in BrotliEstimateBitCostsForLiterals()
149 --in_window; in BrotliEstimateBitCostsForLiterals()
154 ++in_window; in BrotliEstimateBitCostsForLiterals()
161 double lit_cost = FastLog2(in_window) - FastLog2(histo); in BrotliEstimateBitCostsForLiterals()
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_cc_functions.c1182 int in_window, int num_pkt_lost, int use_rtcc) in sctp_cwnd_update_after_ecn_echo_common() argument
1187 if (in_window == 0) { in sctp_cwnd_update_after_ecn_echo_common()
1214 if (in_window == 0) { in sctp_cwnd_update_after_ecn_echo_common()
1393 int in_window, int num_pkt_lost) in sctp_cwnd_update_after_ecn_echo() argument
1396 sctp_cwnd_update_after_ecn_echo_common(stcb, net, in_window, num_pkt_lost, 0); in sctp_cwnd_update_after_ecn_echo()
1406 int in_window, int num_pkt_lost) in sctp_cwnd_update_rtcc_after_ecn_echo() argument
1408 sctp_cwnd_update_after_ecn_echo_common(stcb, net, in_window, num_pkt_lost, 1); in sctp_cwnd_update_rtcc_after_ecn_echo()
2388 struct sctp_nets *net, int in_window, int num_pkt_lost SCTP_UNUSED) in sctp_htcp_cwnd_update_after_ecn_echo() argument
2394 if (in_window == 0) { in sctp_htcp_cwnd_update_after_ecn_echo()
Dsctp_structs.h767 struct sctp_nets *net, int in_window, int num_pkt_lost);
/third_party/mbedtls/library/
Dssl_msg.c3150 ssl->in_window = 0; in mbedtls_ssl_dtls_replay_reset()
3205 if ((ssl->in_window & ((uint64_t) 1 << bit)) != 0) { in mbedtls_ssl_dtls_replay_check()
3228 ssl->in_window = 1; in mbedtls_ssl_dtls_replay_update()
3230 ssl->in_window <<= shift; in mbedtls_ssl_dtls_replay_update()
3231 ssl->in_window |= 1; in mbedtls_ssl_dtls_replay_update()
3240 ssl->in_window |= (uint64_t) 1 << bit; in mbedtls_ssl_dtls_replay_update()
Dssl_tls.c4497 MBEDTLS_PUT_UINT64_BE(ssl->in_window, p, 0); in mbedtls_ssl_context_save()
4740 ssl->in_window = ((uint64_t) p[0] << 56) | in ssl_context_load()
/third_party/mbedtls/include/mbedtls/
Dssl.h1716 uint64_t MBEDTLS_PRIVATE(in_window); /*!< bitmask for replay detection */