Lines Matching refs:range
96 uint32_t range;
194 * when the distance is in the range [4, 127].
469 /* Reset the range decoder. */
472 rc->range = (uint32_t)-1;
501 * Return true if it is possible (from point of view of range decoder) that
512 if (rc->range < RC_TOP_VALUE) {
513 rc->range <<= RC_SHIFT_BITS;
535 bound = (rc->range >> RC_BIT_MODEL_TOTAL_BITS) * *prob;
537 rc->range = bound;
541 rc->range -= bound;
591 rc->range >>= 1;
592 rc->code -= rc->range;
594 rc->code += rc->range & mask;
787 * Having the range decoder always normalized when we are outside
796 * Reset the LZMA decoder and range decoder state. Dictionary is not reset
1298 /* Restrict dict_size to the same range as in the LZMA2 code. */