| 56 | |
| 57 | const std::vector<uint8_t> TYPE_BIT_SIZES{0, 0, 1}; |
| 58 | Instruction DecodeType(std::vector<bool>::const_iterator& bitpos, const std::vector<bool>::const_iterator& endpos) |
| 59 | { |
| 60 | return Instruction(DecodeBits(bitpos, endpos, 0, TYPE_BIT_SIZES)); |
| 61 | } |
| 62 | |
| 63 | const std::vector<uint8_t> ASN_BIT_SIZES{15, 16, 17, 18, 19, 20, 21, 22, 23, 24}; |
| 64 | uint32_t DecodeASN(std::vector<bool>::const_iterator& bitpos, const std::vector<bool>::const_iterator& endpos) |
no test coverage detected