Searched refs:ents (Results 1 - 10 of 10) sorted by relevance
/third_party/node/deps/ngtcp2/ngtcp2/lib/ |
H A D | ngtcp2_pv.c | 50 ngtcp2_static_ringbuf_pv_ents_init(&(*ppv)->ents); in ngtcp2_pv_new() 80 if (ngtcp2_ringbuf_len(&pv->ents.rb) == 0) { in ngtcp2_pv_add_entry() 84 ent = ngtcp2_ringbuf_push_back(&pv->ents.rb); in ngtcp2_pv_add_entry() 92 size_t len = ngtcp2_ringbuf_len(&pv->ents.rb); in ngtcp2_pv_validate() 101 ent = ngtcp2_ringbuf_get(&pv->ents.rb, i); in ngtcp2_pv_validate() 115 if (ngtcp2_ringbuf_len(&pv->ents.rb) == 0) { in ngtcp2_pv_handle_entry_expiry() 119 ent = ngtcp2_ringbuf_get(&pv->ents.rb, ngtcp2_ringbuf_len(&pv->ents.rb) - 1); in ngtcp2_pv_handle_entry_expiry() 141 assert(ngtcp2_ringbuf_len(&pv->ents.rb)); in ngtcp2_pv_validation_timed_out() 143 ent = ngtcp2_ringbuf_get(&pv->ents in ngtcp2_pv_validation_timed_out() [all...] |
H A D | ngtcp2_acktr.c | 72 ngtcp2_ksl_init(&acktr->ents, greater, sizeof(int64_t), mem); in ngtcp2_acktr_init() 93 for (it = ngtcp2_ksl_begin(&acktr->ents); !ngtcp2_ksl_it_end(&it); in ngtcp2_acktr_free() 99 ngtcp2_ksl_free(&acktr->ents); in ngtcp2_acktr_free() 113 if (ngtcp2_ksl_len(&acktr->ents)) { in ngtcp2_acktr_add() 114 it = ngtcp2_ksl_lower_bound(&acktr->ents, &pkt_num); in ngtcp2_acktr_add() 132 ngtcp2_ksl_update_key(&acktr->ents, &ent->pkt_num, &pkt_num); in ngtcp2_acktr_add() 148 ngtcp2_ksl_remove_hint(&acktr->ents, NULL, &it, &ent->pkt_num); in ngtcp2_acktr_add() 152 ngtcp2_ksl_update_key(&acktr->ents, &ent->pkt_num, &pkt_num); in ngtcp2_acktr_add() 171 rv = ngtcp2_ksl_insert(&acktr->ents, NULL, &ent->pkt_num, ent); in ngtcp2_acktr_add() 185 if (ngtcp2_ksl_len(&acktr->ents) > NGTCP2_ACKTR_MAX_EN in ngtcp2_acktr_add() [all...] |
H A D | ngtcp2_rtb.c | 305 ngtcp2_ksl_init(&rtb->ents, greater, sizeof(int64_t), mem); in ngtcp2_rtb_init() 332 it = ngtcp2_ksl_begin(&rtb->ents); in ngtcp2_rtb_free() 340 ngtcp2_ksl_free(&rtb->ents); in ngtcp2_rtb_free() 691 rv = ngtcp2_ksl_insert(&rtb->ents, NULL, &ent->hd.pkt_num, ent); in ngtcp2_rtb_add() 702 return ngtcp2_ksl_begin(&rtb->ents); in ngtcp2_rtb_head() 711 rv = ngtcp2_ksl_remove_hint(&rtb->ents, it, it, &ent->hd.pkt_num); in rtb_remove() 986 it = ngtcp2_ksl_lower_bound(&rtb->ents, &largest_ack); in ngtcp2_rtb_recv_ack() 1024 it = ngtcp2_ksl_lower_bound(&rtb->ents, &largest_ack); in ngtcp2_rtb_recv_ack() 1204 it = ngtcp2_ksl_lower_bound(&rtb->ents, &rtb->largest_acked_tx_pkt_num); in rtb_detect_lost_pkt() 1340 ngtcp2_ksl_it it = ngtcp2_ksl_end(&rtb->ents); in ngtcp2_rtb_remove_excessive_lost_pkt() [all...] |
H A D | ngtcp2_pv.h | 102 /* ents is the ring buffer of ngtcp2_pv_entry */ 103 ngtcp2_static_ringbuf_pv_ents ents; member
|
H A D | ngtcp2_acktr.h | 117 /* ents includes ngtcp2_acktr_entry sorted by decreasing order of 119 ngtcp2_ksl ents; member
|
H A D | ngtcp2_rtb.h | 300 /* ents includes ngtcp2_rtb_entry sorted by decreasing order of 302 ngtcp2_ksl ents; member 336 /* num_lost_pkts is the number entries in ents which has 339 /* num_lost_pmtud_pkts is the number of entries in ents which have
|
/third_party/nghttp2/ |
H A D | genlibtokenlookup.py | 116 ents = b[size] 121 for c in sorted(ents.keys()): 122 headers = sorted(ents[c])
|
H A D | gentokenlookup.py | 42 ents = b[size] 47 for c in sorted(ents.keys()): 48 headers = sorted(ents[c])
|
/third_party/mesa3d/src/mapi/glapi/gen/ |
H A D | gl_apitemp.py | 287 for func, ents in normal_entry_points: 288 for ent in ents: 296 for func, ents in proto_entry_points: 297 for ent in ents:
|
/third_party/node/src/ |
H A D | node_dir.cc | 211 uv_dirent_t* ents, in DirentListToArray() 222 const size_t namelen = strlen(ents[i].name); in DirentListToArray() 224 ents[i].name, in DirentListToArray() 233 entries[j++] = Integer::New(env->isolate(), ents[i].type); in DirentListToArray() 209 DirentListToArray( Environment* env, uv_dirent_t* ents, int num, enum encoding encoding, Local<Value>* err_out) DirentListToArray() argument
|
Completed in 6 milliseconds