Home
last modified time | relevance | path

Searched refs:qlog (Results 1 - 13 of 13) sorted by relevance

/third_party/node/deps/ngtcp2/ngtcp2/lib/
H A Dngtcp2_qlog.h40 qlog. */
49 /* write is a callback function to write qlog. */
64 * ngtcp2_qlog_init initializes |qlog|.
66 void ngtcp2_qlog_init(ngtcp2_qlog *qlog, ngtcp2_qlog_write write,
70 * ngtcp2_qlog_start writes qlog preamble.
72 void ngtcp2_qlog_start(ngtcp2_qlog *qlog, const ngtcp2_cid *odcid, int server);
75 * ngtcp2_qlog_end writes closing part of qlog.
77 void ngtcp2_qlog_end(ngtcp2_qlog *qlog);
80 * ngtcp2_qlog_write_frame writes |fr| to qlog->buf.
84 void ngtcp2_qlog_write_frame(ngtcp2_qlog *qlog, cons
[all...]
H A Dngtcp2_qlog.c34 void ngtcp2_qlog_init(ngtcp2_qlog *qlog, ngtcp2_qlog_write write, in ngtcp2_qlog_init() argument
36 qlog->write = write; in ngtcp2_qlog_init()
37 qlog->ts = qlog->last_ts = ts; in ngtcp2_qlog_init()
38 qlog->user_data = user_data; in ngtcp2_qlog_init()
211 void ngtcp2_qlog_start(ngtcp2_qlog *qlog, const ngtcp2_cid *odcid, int server) { in ngtcp2_qlog_start() argument
215 if (!qlog->write) { in ngtcp2_qlog_start()
224 qlog->write(qlog->user_data, NGTCP2_QLOG_WRITE_FLAG_NONE, buf, in ngtcp2_qlog_start()
228 void ngtcp2_qlog_end(ngtcp2_qlog *qlog) { in ngtcp2_qlog_end() argument
674 qlog_write_time(ngtcp2_qlog *qlog, uint8_t *p) qlog_write_time() argument
678 qlog_pkt_write_start(ngtcp2_qlog *qlog, int sent) qlog_pkt_write_start() argument
701 qlog_pkt_write_end(ngtcp2_qlog *qlog, const ngtcp2_pkt_hd *hd, size_t pktlen) qlog_pkt_write_end() argument
741 ngtcp2_qlog_write_frame(ngtcp2_qlog *qlog, const ngtcp2_frame *fr) ngtcp2_qlog_write_frame() argument
908 ngtcp2_qlog_pkt_received_start(ngtcp2_qlog *qlog) ngtcp2_qlog_pkt_received_start() argument
912 ngtcp2_qlog_pkt_received_end(ngtcp2_qlog *qlog, const ngtcp2_pkt_hd *hd, size_t pktlen) ngtcp2_qlog_pkt_received_end() argument
917 ngtcp2_qlog_pkt_sent_start(ngtcp2_qlog *qlog) ngtcp2_qlog_pkt_sent_start() argument
921 ngtcp2_qlog_pkt_sent_end(ngtcp2_qlog *qlog, const ngtcp2_pkt_hd *hd, size_t pktlen) ngtcp2_qlog_pkt_sent_end() argument
926 ngtcp2_qlog_parameters_set_transport_params( ngtcp2_qlog *qlog, const ngtcp2_transport_params *params, int server, ngtcp2_qlog_side side) ngtcp2_qlog_parameters_set_transport_params() argument
1031 ngtcp2_qlog_metrics_updated(ngtcp2_qlog *qlog, const ngtcp2_conn_stat *cstat) ngtcp2_qlog_metrics_updated() argument
1071 ngtcp2_qlog_pkt_lost(ngtcp2_qlog *qlog, ngtcp2_rtb_entry *ent) ngtcp2_qlog_pkt_lost() argument
1097 ngtcp2_qlog_retry_pkt_received(ngtcp2_qlog *qlog, const ngtcp2_pkt_hd *hd, const ngtcp2_pkt_retry *retry) ngtcp2_qlog_retry_pkt_received() argument
1132 ngtcp2_qlog_stateless_reset_pkt_received( ngtcp2_qlog *qlog, const ngtcp2_pkt_stateless_reset *sr) ngtcp2_qlog_stateless_reset_pkt_received() argument
1159 ngtcp2_qlog_version_negotiation_pkt_received(ngtcp2_qlog *qlog, const ngtcp2_pkt_hd *hd, const uint32_t *sv, size_t nsv) ngtcp2_qlog_version_negotiation_pkt_received() argument
[all...]
H A Dngtcp2_rtb.h308 ngtcp2_qlog *qlog; member
350 ngtcp2_log *log, ngtcp2_qlog *qlog,
H A Dngtcp2_conn.c645 ngtcp2_qlog *qlog, ngtcp2_objalloc *rtb_entry_objalloc, in pktns_init()
669 qlog, rtb_entry_objalloc, frc_objalloc, mem); in pktns_init()
681 ngtcp2_qlog *qlog, ngtcp2_objalloc *rtb_entry_objalloc, in pktns_new()
690 rv = pktns_init(*ppktns, pktns_id, rst, cc, log, qlog, rtb_entry_objalloc, in pktns_new()
1128 ngtcp2_qlog_init(&(*pconn)->qlog, settings->qlog.write, settings->initial_ts, in conn_new()
1130 if ((*pconn)->qlog.write) { in conn_new()
1136 ngtcp2_buf_init(&(*pconn)->qlog.buf, buf, NGTCP2_QLOG_BUFLEN); in conn_new()
1201 &(*pconn)->cc, &(*pconn)->log, &(*pconn)->qlog, in conn_new()
1208 &(*pconn)->cc, &(*pconn)->log, &(*pconn)->qlog, in conn_new()
643 pktns_init(ngtcp2_pktns *pktns, ngtcp2_pktns_id pktns_id, ngtcp2_rst *rst, ngtcp2_cc *cc, ngtcp2_log *log, ngtcp2_qlog *qlog, ngtcp2_objalloc *rtb_entry_objalloc, ngtcp2_objalloc *frc_objalloc, const ngtcp2_mem *mem) pktns_init() argument
679 pktns_new(ngtcp2_pktns **ppktns, ngtcp2_pktns_id pktns_id, ngtcp2_rst *rst, ngtcp2_cc *cc, ngtcp2_log *log, ngtcp2_qlog *qlog, ngtcp2_objalloc *rtb_entry_objalloc, ngtcp2_objalloc *frc_objalloc, const ngtcp2_mem *mem) pktns_new() argument
[all...]
H A Dngtcp2_rtb.c300 ngtcp2_log *log, ngtcp2_qlog *qlog, in ngtcp2_rtb_init()
310 rtb->qlog = qlog; in ngtcp2_rtb_init()
625 if (rtb->qlog) { in rtb_on_pkt_lost()
626 ngtcp2_qlog_pkt_lost(rtb->qlog, ent); in rtb_on_pkt_lost()
1443 if (rtb->qlog) { in rtb_on_pkt_lost_resched_move()
1444 ngtcp2_qlog_pkt_lost(rtb->qlog, ent); in rtb_on_pkt_lost_resched_move()
298 ngtcp2_rtb_init(ngtcp2_rtb *rtb, ngtcp2_pktns_id pktns_id, ngtcp2_strm *crypto, ngtcp2_rst *rst, ngtcp2_cc *cc, ngtcp2_log *log, ngtcp2_qlog *qlog, ngtcp2_objalloc *rtb_entry_objalloc, ngtcp2_objalloc *frc_objalloc, const ngtcp2_mem *mem) ngtcp2_rtb_init() argument
H A Dngtcp2_conn.h676 ngtcp2_qlog qlog; member
/third_party/ffmpeg/libavcodec/
H A Dsnowdec.c117 const int qlog= av_clip(s->qlog + (int64_t)b->qlog, 0, QROOT*16); in decode_subband_slice_buffered() local
118 int qmul= ff_qexp[qlog&(QROOT-1)]<<(qlog>>QSHIFT); in decode_subband_slice_buffered()
122 if(b->ibuf == s->spatial_idwt_buffer || s->qlog == LOSSLESS_QLOG){ in decode_subband_slice_buffered()
224 const int qlog= av_clip(s->qlog + (int64_t)b->qlog, 0, QROOT*16); in dequantize_slice_buffered() local
225 const int qmul= ff_qexp[qlog in dequantize_slice_buffered()
[all...]
H A Dsnowenc.c1247 const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16); in quantize() local
1248 const int qmul= ff_qexp[qlog&(QROOT-1)]<<((qlog>>QSHIFT) + ENCODER_EXTRA_BITS); in quantize()
1251 if(s->qlog == LOSSLESS_QLOG){ in quantize()
1308 const int qlog= av_clip(s->qlog + b->qlog, 0, QROOT*16); in dequantize() local
1309 const int qmul= ff_qexp[qlog in dequantize()
1501 const int qlog= av_clip(2*QROOT + b->qlog, 0, QROOT*16); ratecontrol_1pass() local
[all...]
H A Dsnow.h90 int qlog; ///< log(qscale)/log[2^(1/6)] member
157 int qlog; member
/third_party/nghttp2/src/
H A Dshrpx_http3_upstream.cc641 if (!quicconf.upstream.qlog.dir.empty()) { in init()
642 auto fd = open_qlog_file(quicconf.upstream.qlog.dir, scid); in init()
2896 ULOG(ERROR, this) << "Failed to open qlog file " << path in open_qlog_file()
H A Dshrpx_config.h390 StringRef::from_lit("frontend-quic-qlog-dir");
801 } qlog; member
H A Dshrpx_config.cc2347 if (util::strieq_l("frontend-quic-qlog-di", name, 21)) { in option_lookup_token()
4103 config->quic.upstream.qlog.dir = make_string_ref(config->balloc, optarg); in parse_config()
/third_party/node/deps/ngtcp2/ngtcp2/lib/includes/ngtcp2/
H A Dngtcp2.h1731 * write qlog |data| of length |datalen| bytes. |flags| is bitwise OR
1742 * :type:`ngtcp2_qlog_settings` is a set of settings for qlog.
1753 * :member:`write` is a callback function to write qlog. Setting
1754 * ``NULL`` disables qlog.
1769 * :member:`qlog` is qlog settings.
1771 ngtcp2_qlog_settings qlog; member
1788 * with qlog.

Completed in 44 milliseconds