Lines Matching defs:item
69 int nghttp3_pq_push(nghttp3_pq *pq, nghttp3_pq_entry *item) {
84 pq->q[pq->length] = item;
85 item->index = pq->length;
126 void nghttp3_pq_remove(nghttp3_pq *pq, nghttp3_pq_entry *item) {
127 assert(pq->q[item->index] == item);
129 if (item->index == 0) {
134 if (item->index == pq->length - 1) {
139 pq->q[item->index] = pq->q[pq->length - 1];
140 pq->q[item->index]->index = item->index;
143 if (pq->less(item, pq->q[item->index])) {
144 bubble_down(pq, item->index);
146 bubble_up(pq, item->index);