| 446 | } |
| 447 | |
| 448 | size_t h2_iq_mshift(h2_iqueue *q, int *pint, size_t max) |
| 449 | { |
| 450 | size_t i; |
| 451 | for (i = 0; i < max; ++i) { |
| 452 | pint[i] = h2_iq_shift(q); |
| 453 | if (pint[i] == 0) { |
| 454 | break; |
| 455 | } |
| 456 | } |
| 457 | return i; |
| 458 | } |
| 459 | |
| 460 | static void iq_grow(h2_iqueue *q, int nlen) |
| 461 | { |
nothing calls this directly
no test coverage detected