Lines Matching refs:count
134 int count; in FSE_readNCount_body() local
137 count = bitStream & (threshold-1); in FSE_readNCount_body()
140 count = bitStream & (2*threshold-1); in FSE_readNCount_body()
141 if (count >= threshold) count -= max; in FSE_readNCount_body()
145 count--; /* extra accuracy */ in FSE_readNCount_body()
149 if (count >= 0) { in FSE_readNCount_body()
150 remaining -= count; in FSE_readNCount_body()
152 assert(count == -1); in FSE_readNCount_body()
153 remaining += count; in FSE_readNCount_body()
155 normalizedCounter[charnum++] = (short)count; in FSE_readNCount_body()
156 previous0 = !count; in FSE_readNCount_body()