Lines Matching full:bitstream
52 U32 bitStream; in FSE_readNCount_body() local
72 bitStream = MEM_readLE32(ip); in FSE_readNCount_body()
73 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
75 bitStream >>= 4; in FSE_readNCount_body()
89 int repeats = ZSTD_countTrailingZeros32(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
99 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()
100 repeats = ZSTD_countTrailingZeros32(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
103 bitStream >>= 2 * repeats; in FSE_readNCount_body()
107 assert((bitStream & 3) < 3); in FSE_readNCount_body()
108 charnum += bitStream & 3; in FSE_readNCount_body()
130 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()
136 if ((bitStream & (threshold-1)) < (U32)max) { in FSE_readNCount_body()
137 count = bitStream & (threshold-1); in FSE_readNCount_body()
140 count = bitStream & (2*threshold-1); in FSE_readNCount_body()
178 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()