| 164 | // for skipping big subtrees. |
| 165 | constexpr uint8_t JUMP_BIT_SIZES[]{5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30}; |
| 166 | uint32_t DecodeJump(size_t& bitpos, const std::span<const std::byte> data) |
| 167 | { |
| 168 | return DecodeBits(bitpos, data, 17, JUMP_BIT_SIZES); |
| 169 | } |
| 170 | |
| 171 | } // anonymous namespace |
| 172 |
no test coverage detected