Lines Matching refs:bitStream
79 U32 bitStream; in FSE_readNCount_body() local
99 bitStream = MEM_readLE32(ip); in FSE_readNCount_body()
100 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
102 bitStream >>= 4; in FSE_readNCount_body()
116 int repeats = FSE_ctz(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
126 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()
127 repeats = FSE_ctz(~bitStream | 0x80000000) >> 1; in FSE_readNCount_body()
130 bitStream >>= 2 * repeats; in FSE_readNCount_body()
134 assert((bitStream & 3) < 3); in FSE_readNCount_body()
135 charnum += bitStream & 3; in FSE_readNCount_body()
157 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()
163 if ((bitStream & (threshold-1)) < (U32)max) { in FSE_readNCount_body()
164 count = bitStream & (threshold-1); in FSE_readNCount_body()
167 count = bitStream & (2*threshold-1); in FSE_readNCount_body()
205 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()