Home | History | Annotate | Download | only in legacy

Lines Matching refs:bitStream

207    bitstream
257 * bitStream decompression API (read backward)
315 * bitStream decoding
321 * @srcBuffer must point at the beginning of a bitStream
322 * @srcSize must be the exact size of the bitStream
603 /* build a fake FSE_DTable, designed to read an uncompressed bitstream where each symbol uses nbBits */
1126 U32 bitStream;
1132 bitStream = MEM_readLE32(ip);
1133 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
1135 bitStream >>= 4;
1147 while ((bitStream & 0xFFFF) == 0xFFFF)
1153 bitStream = MEM_readLE32(ip) >> bitCount;
1157 bitStream >>= 16;
1161 while ((bitStream & 3) == 3)
1164 bitStream>>=2;
1167 n0 += bitStream & 3;
1175 bitStream = MEM_readLE32(ip) >> bitCount;
1178 bitStream >>= 2;
1184 if ((bitStream & (threshold-1)) < (U32)max)
1186 count = (short)(bitStream & (threshold-1));
1191 count = (short)(bitStream & (2*threshold-1));
1217 bitStream = MEM_readLE32(ip) >> (bitCount & 31);
1644 /* no more data to retrieve from bitstream, hence no need to reload */
2292 #define MIN_SEQUENCES_SIZE (2 /*seqNb*/ + 2 /*dumps*/ + 3 /*seqTables*/ + 1 /*bitStream*/)