Lines Matching refs:bitStream
1187 U32 bitStream; in FSE_readNCount() local
1193 bitStream = MEM_readLE32(ip); in FSE_readNCount()
1194 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount()
1196 bitStream >>= 4; in FSE_readNCount()
1208 while ((bitStream & 0xFFFF) == 0xFFFF) in FSE_readNCount()
1214 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount()
1218 bitStream >>= 16; in FSE_readNCount()
1222 while ((bitStream & 3) == 3) in FSE_readNCount()
1225 bitStream>>=2; in FSE_readNCount()
1228 n0 += bitStream & 3; in FSE_readNCount()
1236 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount()
1239 bitStream >>= 2; in FSE_readNCount()
1245 if ((bitStream & (threshold-1)) < (U32)max) in FSE_readNCount()
1247 count = (short)(bitStream & (threshold-1)); in FSE_readNCount()
1252 count = (short)(bitStream & (2*threshold-1)); in FSE_readNCount()
1278 bitStream = MEM_readLE32(ip) >> (bitCount & 31); in FSE_readNCount()