Searched refs:bitCount (Results 1 - 2 of 2) sorted by relevance

/linux-master/lib/zstd/common/
H A Dentropy_common.c69 int bitCount; local
92 bitCount = 4;
111 bitCount -= (int)(8 * (iend - 7 - ip));
112 bitCount &= 31;
115 bitStream = MEM_readLE32(ip) >> bitCount;
120 bitCount += 2 * repeats;
125 bitCount += 2;
137 if (LIKELY(ip <= iend-7) || (ip + (bitCount>>3) <= iend-4)) {
138 assert((bitCount >> 3) <= 3); /* For first condition to work */
139 ip += bitCount>>
[all...]
/linux-master/lib/zstd/compress/
H A Dfse_compress.c225 + 4 /* bitCount initialized at 4 */
245 int bitCount = 0; local
251 bitStream += (tableLog-FSE_MIN_TABLELOG) << bitCount;
252 bitCount += 4;
266 bitStream += 0xFFFFU << bitCount;
276 bitStream += 3 << bitCount;
277 bitCount += 2;
279 bitStream += (symbol-start) << bitCount;
280 bitCount += 2;
281 if (bitCount>1
[all...]

Completed in 193 milliseconds