Home | History | Annotate | Download | only in LZMA

Lines Matching refs:bit

83 					int bit = ((symbol >> i) & 1);

84 rangeEncoder.Encode(m_Encoders, context, bit);
85 context = (context << 1) | bit;
95 int bit = ((symbol >> i) & 1);
101 same = (matchBit == bit);
103 rangeEncoder.Encode(m_Encoders, state, bit);
104 context = (context << 1) | bit;
118 int bit = (symbol >> i) & 1;
119 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 + matchBit) << 8) + context], bit);
120 context = (context << 1) | bit;
121 if (matchBit != bit)
130 int bit = (symbol >> i) & 1;
131 price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[context], bit);
132 context = (context << 1) | bit;