MCPcopy Create free account
hub / github.com/Segs/Segs / GetReadableBits

Method GetReadableBits

Components/BitStream.h:81–81  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 11

serializefromFunction · 0.80
serializefromMethod · 0.80
event_for_packetMethod · 0.80
ReceivedBlockMethod · 0.80
mergeSiblingsMethod · 0.80
packetSplitFunction · 0.80
wrapPacketMethod · 0.80
EventFromStreamMethod · 0.80
on_input_stateMethod · 0.80
appendBitStreamMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected