Searched refs:frq (Results 1 - 6 of 6) sorted by relevance
/third_party/node/deps/ngtcp2/nghttp3/lib/ |
H A D | nghttp3_stream.c | 68 nghttp3_ringbuf_init(&stream->frq, 0, sizeof(nghttp3_frame_entry), mem); in nghttp3_stream_new() 139 static void delete_frq(nghttp3_ringbuf *frq, const nghttp3_mem *mem) { in delete_frq() argument 141 size_t i, len = nghttp3_ringbuf_len(frq); in delete_frq() 144 frent = nghttp3_ringbuf_get(frq, i); in delete_frq() 154 nghttp3_ringbuf_free(frq); in delete_frq() 166 delete_frq(&stream->frq, stream->mem); in nghttp3_stream_del() 227 nghttp3_ringbuf *frq = &stream->frq; in nghttp3_stream_frq_add() local 231 if (nghttp3_ringbuf_full(frq)) { in nghttp3_stream_frq_add() 232 size_t nlen = nghttp3_max(NGHTTP3_MIN_RBLEN, nghttp3_ringbuf_len(frq) * in nghttp3_stream_frq_add() 246 nghttp3_ringbuf *frq = &stream->frq; nghttp3_stream_fill_outq() local [all...] |
H A D | nghttp3_stream.h | 212 nghttp3_ringbuf frq; member
|
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_conn.c | 665 ngtcp2_ksl_init(&pktns->crypto.tx.frq, crypto_offset_less, sizeof(uint64_t), in pktns_init() 739 ngtcp2_frame_chain_list_objalloc_del(pktns->tx.frq, pktns->rtb.frc_objalloc, in pktns_free() 745 for (it = ngtcp2_ksl_begin(&pktns->crypto.tx.frq); !ngtcp2_ksl_it_end(&it); in pktns_free() 751 ngtcp2_ksl_free(&pktns->crypto.tx.frq); in pktns_free() 1950 for (it = ngtcp2_ksl_begin(&pktns->crypto.tx.frq); !ngtcp2_ksl_it_end(&it); in conn_cryptofrq_clear() 1955 ngtcp2_ksl_clear(&pktns->crypto.tx.frq); in conn_cryptofrq_clear() 1974 for (it = ngtcp2_ksl_begin(&pktns->crypto.tx.frq); !ngtcp2_ksl_it_end(&it); in conn_cryptofrq_unacked_offset() 2009 for (it = ngtcp2_ksl_begin(&pktns->crypto.tx.frq); !ngtcp2_ksl_it_end(&it);) { in conn_cryptofrq_unacked_pop() 2013 ngtcp2_ksl_remove_hint(&pktns->crypto.tx.frq, &it, &it, &fr->offset); in conn_cryptofrq_unacked_pop() 2093 rv = ngtcp2_ksl_insert(&pktns->crypto.tx.frq, NUL in conn_cryptofrq_unacked_pop() 2547 ngtcp2_frame_chain *frq = NULL, **pfrc = &frq; conn_write_handshake_pkt() local [all...] |
H A D | ngtcp2_conn.h | 237 ngtcp2_frame_chain *frq; member 310 /* frq contains crypto data sorted by their offset. */ 311 ngtcp2_ksl frq; member
|
H A D | ngtcp2_rtb.c | 429 ngtcp2_frame_chain *frc, *nfrc, **pfrc = &pktns->tx.frq; in rtb_reclaim_frame() 533 rv = ngtcp2_ksl_insert(&pktns->crypto.tx.frq, NULL, in rtb_reclaim_frame() 1531 rv = ngtcp2_ksl_insert(&pktns->crypto.tx.frq, NULL, in rtb_on_pkt_lost_resched_move() 1560 *pfrc = pktns->tx.frq; in rtb_on_pkt_lost_resched_move() 1561 pktns->tx.frq = ent->frc; in rtb_on_pkt_lost_resched_move()
|
/third_party/astc-encoder/Source/ |
H A D | tinyexr.h | 8377 // Compute Huffman codes (based on frq input) and store them in frq: 8390 long long *frq, // io: input frequencies [HUF_ENCSIZE], output table in hufBuildEncTable() 8391 int *im, // o: min frq index in hufBuildEncTable() 8392 int *iM) // o: max frq index in hufBuildEncTable() 8395 // This function assumes that when it is called, array frq in hufBuildEncTable() 8397 // that are to be Huffman-encoded. (frq[i] contains the number in hufBuildEncTable() 8403 // to non-zero entries in frq: in hufBuildEncTable() 8405 // frq[im] != 0, and frq[ in hufBuildEncTable() 8389 hufBuildEncTable( long long *frq, int *im, int *iM) hufBuildEncTable() argument [all...] |
Completed in 27 milliseconds