| 535 | } |
| 536 | |
| 537 | static apr_int32_t ceil_power_of_2(apr_int32_t n) |
| 538 | { |
| 539 | if (n <= 2) return 2; |
| 540 | --n; |
| 541 | n |= n >> 1; |
| 542 | n |= n >> 2; |
| 543 | n |= n >> 4; |
| 544 | n |= n >> 8; |
| 545 | n |= n >> 16; |
| 546 | return ++n; |
| 547 | } |
| 548 | |
| 549 | static h2_push_diary *diary_create(apr_pool_t *p, h2_push_digest_type dtype, |
| 550 | int N) |
no outgoing calls
no test coverage detected