Searched refs:bitCount (Results 1 – 2 of 2) sorted by relevance
53 int bitCount; in FSE_readNCount_body() local76 bitCount = 4; in FSE_readNCount_body()95 bitCount -= (int)(8 * (iend - 7 - ip)); in FSE_readNCount_body()96 bitCount &= 31; in FSE_readNCount_body()99 bitStream = MEM_readLE32(ip) >> bitCount; in FSE_readNCount_body()104 bitCount += 2 * repeats; in FSE_readNCount_body()109 bitCount += 2; in FSE_readNCount_body()121 if (LIKELY(ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) { in FSE_readNCount_body()122 assert((bitCount >> 3) <= 3); /* For first condition to work */ in FSE_readNCount_body()123 ip += bitCount>>3; in FSE_readNCount_body()[all …]
247 int bitCount = 0; in FSE_writeNCount_generic() local253 bitStream += (tableLog-FSE_MIN_TABLELOG) << bitCount; in FSE_writeNCount_generic()254 bitCount += 4; in FSE_writeNCount_generic()268 bitStream += 0xFFFFU << bitCount; in FSE_writeNCount_generic()278 bitStream += 3U << bitCount; in FSE_writeNCount_generic()279 bitCount += 2; in FSE_writeNCount_generic()281 bitStream += (symbol-start) << bitCount; in FSE_writeNCount_generic()282 bitCount += 2; in FSE_writeNCount_generic()283 if (bitCount>16) { in FSE_writeNCount_generic()290 bitCount -= 16; in FSE_writeNCount_generic()[all …]