Lines Matching defs:threshold
67 int threshold;
95 threshold = 1<<nbBits;
149 int const max = (2*threshold-1) - remaining;
152 if ((bitStream & (threshold-1)) < (U32)max) {
153 count = bitStream & (threshold-1);
156 count = bitStream & (2*threshold-1);
157 if (count >= threshold) count -= max;
174 assert(threshold > 1);
175 if (remaining < threshold) {
177 * threshold update condition because we
178 * know that threshold > 1.
182 threshold = 1 << (nbBits - 1);