Searched refs:sizeInBytes (Results 1 – 1 of 1) sorted by relevance
154 const int sizeInBytes = bitsWanted / 8; in allocate() local155 if (sizeInBytes <= bytesAllocated) return; in allocate()157 stream = allocBytes(sizeInBytes, stream, bytesAllocated); in allocate()158 bytesAllocated = sizeInBytes; in allocate()207 const int sizeInBytes; // Size of the stream *in bytes*. Might include padding. member213 …tStream, const int byteCount, const int bitCount) : stream(bitStream), sizeInBytes(byteCount), siz… in BitStreamReader()