Lines Matching refs:bitStream
487 U32 bitStream; in FSE_readNCount() local
493 bitStream = FSE_readLE32(ip); in FSE_readNCount()
494 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount()
496 bitStream >>= 4; in FSE_readNCount()
508 while ((bitStream & 0xFFFF) == 0xFFFF) in FSE_readNCount()
514 bitStream = FSE_readLE32(ip) >> bitCount; in FSE_readNCount()
518 bitStream >>= 16; in FSE_readNCount()
522 while ((bitStream & 3) == 3) in FSE_readNCount()
525 bitStream>>=2; in FSE_readNCount()
528 n0 += bitStream & 3; in FSE_readNCount()
536 bitStream = FSE_readLE32(ip) >> bitCount; in FSE_readNCount()
539 bitStream >>= 2; in FSE_readNCount()
545 if ((bitStream & (threshold-1)) < (U32)max) in FSE_readNCount()
547 count = (short)(bitStream & (threshold-1)); in FSE_readNCount()
552 count = (short)(bitStream & (2*threshold-1)); in FSE_readNCount()
578 bitStream = FSE_readLE32(ip) >> (bitCount & 31); in FSE_readNCount()