Home | History | Annotate | Download | only in LZMA

Lines Matching refs:footerBits

1049 		int footerBits = 30;

1050 int posReduced = (1 << footerBits) - 1;
1051 _rangeEncoder.EncodeDirectBits(posReduced >> Base.kNumAlignBits, footerBits - Base.kNumAlignBits);
1180 int footerBits = (int)((posSlot >> 1) - 1);
1181 int baseVal = ((2 | (posSlot & 1)) << footerBits);
1186 baseVal - posSlot - 1, _rangeEncoder, footerBits, posReduced);
1189 _rangeEncoder.EncodeDirectBits(posReduced >> Base.kNumAlignBits, footerBits - Base.kNumAlignBits);
1319 int footerBits = (int)((posSlot >> 1) - 1);
1320 int baseVal = ((2 | (posSlot & 1)) << footerBits);
1322 baseVal - posSlot - 1, footerBits, i - baseVal);