Lines Matching defs:bitStream
323 #define MIN_SEQUENCES_SIZE (2 /*seqNb*/ + 2 /*dumps*/ + 3 /*seqTables*/ + 1 /*bitStream*/)
484 bitstream
533 * bitStream decompression API (read backward)
591 * bitStream decoding
597 * @srcBuffer must point at the beginning of a bitStream
598 * @srcSize must be the exact size of the bitStream
782 /* build a fake FSE_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1109 U32 bitStream;
1115 bitStream = MEM_readLE32(ip);
1116 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
1118 bitStream >>= 4;
1130 while ((bitStream & 0xFFFF) == 0xFFFF)
1136 bitStream = MEM_readLE32(ip) >> bitCount;
1140 bitStream >>= 16;
1144 while ((bitStream & 3) == 3)
1147 bitStream>>=2;
1150 n0 += bitStream & 3;
1158 bitStream = MEM_readLE32(ip) >> bitCount;
1161 bitStream >>= 2;
1167 if ((bitStream & (threshold-1)) < (U32)max)
1169 count = (short)(bitStream & (threshold-1));
1174 count = (short)(bitStream & (2*threshold-1));
1200 bitStream = MEM_readLE32(ip) >> (bitCount & 31);
1802 /* no more data to retrieve from bitstream, hence no need to reload */