Home | History | Annotate | Download | only in legacy

Lines Matching refs:bitStream

618    bitstream
668 * bitStream decoding API (read backward)
725 * bitStream decoding
730 * @srcBuffer must point at the beginning of a bitStream
731 * @srcSize must be the exact size of the bitStream
901 /* build a fake FSEv05_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1239 U32 bitStream;
1245 bitStream = MEM_readLE32(ip);
1246 nbBits = (bitStream & 0xF) + FSEv05_MIN_TABLELOG; /* extract tableLog */
1248 bitStream >>= 4;
1258 while ((bitStream & 0xFFFF) == 0xFFFF) {
1262 bitStream = MEM_readLE32(ip) >> bitCount;
1264 bitStream >>= 16;
1267 while ((bitStream & 3) == 3) {
1269 bitStream>>=2;
1272 n0 += bitStream & 3;
1279 bitStream = MEM_readLE32(ip) >> bitCount;
1282 bitStream >>= 2;
1288 if ((bitStream & (threshold-1)) < (U32)max) {
1289 count = (short)(bitStream & (threshold-1));
1292 count = (short)(bitStream & (2*threshold-1));
1313 bitStream = MEM_readLE32(ip) >> (bitCount & 31);
1897 /* no more data to retrieve from bitstream, hence no need to reload */