| 79 | int64_t Get64Bits(); |
| 80 | uint32_t GetWritableBits() const { int64_t bitsleft = int64_t(GetAvailSize() << 3) - m_write_bit_off; return uint32_t(bitsleft > 0 ? bitsleft : 0); } |
| 81 | uint32_t GetReadableBits() const { return (GetReadableDataSize()<<3)+(m_write_bit_off-m_read_bit_off);} |
| 82 | uint32_t GetAvailSize() const; |
| 83 | bool IsByteAligned() const { return m_byteAligned;} |
| 84 |
no outgoing calls
no test coverage detected