Searched refs:matchBit (Results 1 – 8 of 8) sorted by relevance
167 int matchBit; in decode() local172 matchBit = matchByte & offset; in decode()173 bit = rc.decodeBit(probs, offset + matchBit + symbol); in decode()175 offset &= (0 - bit) ^ ~matchBit; in decode()
559 int matchBit; in encode() local564 matchBit = matchByte & offset; in encode()565 subencoderIndex = offset + matchBit + (symbol >>> 8); in encode()598 int matchBit; in getMatchedPrice() local605 matchBit = matchByte & offset; in getMatchedPrice()606 subencoderIndex = offset + matchBit + (symbol >>> 8); in getMatchedPrice()
76 int matchBit = (matchByte >> 7) & 1; in DecodeWithMatchByte() local78 int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 + matchBit) << 8) + symbol); in DecodeWithMatchByte()80 if (matchBit != bit) in DecodeWithMatchByte()
99 int matchBit = ((matchByte >> i) & 1); in EncodeMatched() local100 state += ((1 + matchBit) << 8); in EncodeMatched()101 same = (matchBit == bit); in EncodeMatched()117 int matchBit = (matchByte >> i) & 1; in GetPrice() local119 …price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8) + conte… in GetPrice()121 if (matchBit != bit) in GetPrice()
83 uint matchBit = (uint)(matchByte >> 7) & 1; in DecodeWithMatchByte()85 uint bit = m_Decoders[((1 + matchBit) << 8) + symbol].Decode(rangeDecoder); in DecodeWithMatchByte()87 if (matchBit != bit) in DecodeWithMatchByte()
99 uint matchBit = (uint)((matchByte >> i) & 1); in EncodeMatched()100 state += ((1 + matchBit) << 8); in EncodeMatched()101 same = (matchBit == bit); in EncodeMatched()117 uint matchBit = (uint)(matchByte >> i) & 1; in GetPrice()119 price += m_Encoders[((1 + matchBit) << 8) + context].GetPrice(bit); in GetPrice()121 if (matchBit != bit) in GetPrice()
387 unsigned matchBit = (matchByte >> 7) & 1; in DecodeLiteral() local389 unsigned bit = RangeDec.DecodeBit(&probs[((1 + matchBit) << 8) + symbol]); in DecodeLiteral()391 if (matchBit != bit) in DecodeLiteral()
620 unsigned matchBit = (matchByte >> 7) & 1;622 unsigned bit = RangeDec.DecodeBit(&probs[((1 + matchBit) << 8) + symbol]);624 if (matchBit != bit)