Lines Matching defs:bitStream
382 bitstream
438 * bitStream decoding API (read backward)
494 * bitStream decoding
499 * `srcSize` must be the *exact* size of the bitStream, in bytes.
773 /**< build a fake FSEv07_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1161 U32 bitStream;
1167 bitStream = MEM_readLE32(ip);
1168 nbBits = (bitStream & 0xF) + FSEv07_MIN_TABLELOG; /* extract tableLog */
1170 bitStream >>= 4;
1180 while ((bitStream & 0xFFFF) == 0xFFFF) {
1184 bitStream = MEM_readLE32(ip) >> bitCount;
1186 bitStream >>= 16;
1189 while ((bitStream & 3) == 3) {
1191 bitStream>>=2;
1194 n0 += bitStream & 3;
1201 bitStream = MEM_readLE32(ip) >> bitCount;
1204 bitStream >>= 2;
1209 if ((bitStream & (threshold-1)) < (U32)max) {
1210 count = (short)(bitStream & (threshold-1));
1213 count = (short)(bitStream & (2*threshold-1));
1234 bitStream = MEM_readLE32(ip) >> (bitCount & 31);
1805 /* no more data to retrieve from bitstream, hence no need to reload */