Lines Matching refs:ents
72 ngtcp2_ksl_init(&acktr->ents, greater, sizeof(int64_t), mem);
93 for (it = ngtcp2_ksl_begin(&acktr->ents); !ngtcp2_ksl_it_end(&it);
99 ngtcp2_ksl_free(&acktr->ents);
113 if (ngtcp2_ksl_len(&acktr->ents)) {
114 it = ngtcp2_ksl_lower_bound(&acktr->ents, &pkt_num);
132 ngtcp2_ksl_update_key(&acktr->ents, &ent->pkt_num, &pkt_num);
148 ngtcp2_ksl_remove_hint(&acktr->ents, NULL, &it, &ent->pkt_num);
152 ngtcp2_ksl_update_key(&acktr->ents, &ent->pkt_num, &pkt_num);
171 rv = ngtcp2_ksl_insert(&acktr->ents, NULL, &ent->pkt_num, ent);
185 if (ngtcp2_ksl_len(&acktr->ents) > NGTCP2_ACKTR_MAX_ENT) {
186 it = ngtcp2_ksl_end(&acktr->ents);
189 ngtcp2_ksl_remove_hint(&acktr->ents, NULL, &it, &delent->pkt_num);
199 it = ngtcp2_ksl_lower_bound(&acktr->ents, &ent->pkt_num);
204 ngtcp2_ksl_remove_hint(&acktr->ents, &it, &it, &ent->pkt_num);
210 return ngtcp2_ksl_begin(&acktr->ents);
214 ngtcp2_ksl_it it = ngtcp2_ksl_begin(&acktr->ents);
236 ngtcp2_ksl_remove_hint(&acktr->ents, it, it, &ent->pkt_num);
251 it = ngtcp2_ksl_lower_bound(&acktr->ents, &ack_ent->largest_ack);
257 if (ngtcp2_ksl_len(&acktr->ents)) {