Home
last modified time | relevance | path

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

/linux-6.15/lib/zstd/common/
H A Dentropy_common.c53 int bitCount; in FSE_readNCount_body() local
76 bitCount = 4; in FSE_readNCount_body()
96 bitCount &= 31; in FSE_readNCount_body()
109 bitCount += 2; in FSE_readNCount_body()
123 ip += bitCount>>3; in FSE_readNCount_body()
124 bitCount &= 7; in FSE_readNCount_body()
127 bitCount &= 31; in FSE_readNCount_body()
171 ip += bitCount>>3; in FSE_readNCount_body()
172 bitCount &= 7; in FSE_readNCount_body()
175 bitCount &= 31; in FSE_readNCount_body()
[all …]
/linux-6.15/lib/zstd/compress/
H A Dfse_compress.c247 int bitCount = 0; in FSE_writeNCount_generic() local
254 bitCount += 4; in FSE_writeNCount_generic()
279 bitCount += 2; 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()
299 bitCount += nbBits; in FSE_writeNCount_generic()
300 bitCount -= (count<max); in FSE_writeNCount_generic()
305 if (bitCount>16) { in FSE_writeNCount_generic()
312 bitCount -= 16; in FSE_writeNCount_generic()
[all …]