Home | History | Annotate | Download | only in ssl

Lines Matching defs:htop

53     size_t htop; /* Highest used heap element */
176 if (pq->htop > p + 1) {
182 while (pq->htop > p && pq->compare(h[p].data, h[n].data) < 0) {
187 if (pq->htop > p + 1) {
202 n = pq->htop++;
221 if (pq->htop > 0) {
233 if (pq == NULL || pq->htop == 0)
240 if (--pq->htop != 0) {
241 pqueue_move_elem(pq, pq->htop, 0);
257 if (pq == NULL || elem >= pq->hmax || pq->htop == 0)
265 if (n == pq->htop - 1) {
271 return pq->heap[--pq->htop].data;
302 if (pq->htop + n < cur_max)
338 pq->htop = 0;
364 for (i = 0; i < pq->htop; i++)
372 return pq != NULL ? pq->htop : 0;