Lines Matching refs:bitStream
73 U32 bitStream; in FSE_readNCount_body() local
93 bitStream = MEM_readLE32(ip); in FSE_readNCount_body()
94 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
96 bitStream >>= 4; in FSE_readNCount_body()
110 int repeats = FSE_ctz(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
120 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()
121 repeats = FSE_ctz(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
124 bitStream >>= 2 * repeats; in FSE_readNCount_body()
128 assert((bitStream & 3) < 3); in FSE_readNCount_body()
129 charnum += bitStream & 3; in FSE_readNCount_body()
151 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()
157 if ((bitStream & (threshold-1)) < (U32)max) { in FSE_readNCount_body()
158 count = bitStream & (threshold-1); in FSE_readNCount_body()
161 count = bitStream & (2*threshold-1); in FSE_readNCount_body()
199 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()