Lines Matching defs:item
67 int nghttp2_pq_push(nghttp2_pq *pq, nghttp2_pq_entry *item) {
82 pq->q[pq->length] = item;
83 item->index = pq->length;
127 void nghttp2_pq_remove(nghttp2_pq *pq, nghttp2_pq_entry *item) {
128 assert(pq->q[item->index] == item);
130 if (item->index == 0) {
135 if (item->index == pq->length - 1) {
140 pq->q[item->index] = pq->q[pq->length - 1];
141 pq->q[item->index]->index = item->index;
144 if (pq->less(item, pq->q[item->index])) {
145 bubble_down(pq, item->index);
147 bubble_up(pq, item->index);