| 347 | } |
| 348 | |
| 349 | static void iq_swap(h2_proxy_iqueue *q, int i, int j) |
| 350 | { |
| 351 | int x = q->elts[i]; |
| 352 | q->elts[i] = q->elts[j]; |
| 353 | q->elts[j] = x; |
| 354 | } |
| 355 | |
| 356 | static int iq_bubble_up(h2_proxy_iqueue *q, int i, int top, |
| 357 | h2_proxy_iq_cmp *cmp, void *ctx) |
no outgoing calls
no test coverage detected