Searched refs:footerBits (Results 1 - 3 of 3) sorted by relevance
/third_party/lzma/Java/SevenZip/Compression/LZMA/ |
H A D | Encoder.java | 1049 int footerBits = 30;
in WriteEndMarker() 1050 int posReduced = (1 << footerBits) - 1;
in WriteEndMarker() 1051 _rangeEncoder.EncodeDirectBits(posReduced >> Base.kNumAlignBits, footerBits - Base.kNumAlignBits);
in WriteEndMarker() 1180 int footerBits = (int)((posSlot >> 1) - 1);
in CodeOneBlock() 1181 int baseVal = ((2 | (posSlot & 1)) << footerBits);
in CodeOneBlock() 1186 baseVal - posSlot - 1, _rangeEncoder, footerBits, posReduced);
in CodeOneBlock() 1189 _rangeEncoder.EncodeDirectBits(posReduced >> Base.kNumAlignBits, footerBits - Base.kNumAlignBits);
in CodeOneBlock() 1319 int footerBits = (int)((posSlot >> 1) - 1);
in FillDistancesPrices() 1320 int baseVal = ((2 | (posSlot & 1)) << footerBits);
in FillDistancesPrices() 1322 baseVal - posSlot - 1, footerBits, in FillDistancesPrices() [all...] |
/third_party/lzma/CS/7zip/Compress/LZMA/ |
H A D | LzmaEncoder.cs | 1049 int footerBits = 30;
in WriteEndMarker() 1050 UInt32 posReduced = (((UInt32)1) << footerBits) - 1;
in WriteEndMarker() 1051 _rangeEncoder.EncodeDirectBits(posReduced >> Base.kNumAlignBits, footerBits - Base.kNumAlignBits);
in WriteEndMarker() 1182 int footerBits = (int)((posSlot >> 1) - 1);
in CodeOneBlock() 1183 UInt32 baseVal = ((2 | (posSlot & 1)) << footerBits);
in CodeOneBlock() 1188 baseVal - posSlot - 1, _rangeEncoder, footerBits, posReduced);
in CodeOneBlock() 1191 _rangeEncoder.EncodeDirectBits(posReduced >> Base.kNumAlignBits, footerBits - Base.kNumAlignBits);
in CodeOneBlock() 1319 int footerBits = (int)((posSlot >> 1) - 1);
in FillDistancesPrices() 1320 UInt32 baseVal = ((2 | (posSlot & 1)) << footerBits);
in FillDistancesPrices() 1322 baseVal - posSlot - 1, footerBits, in FillDistancesPrices() [all...] |
/third_party/lzma/C/ |
H A D | LzmaEnc.c | 2239 unsigned footerBits = (posSlot >> 1) - 1;
in FillDistancesPrices() local 2240 unsigned base = ((2 | (posSlot & 1)) << footerBits);
in FillDistancesPrices() 2242 // tempPrices[i] = RcTree_ReverseGetPrice(p->posEncoders + base, footerBits, i - base, p->ProbPrices);
in FillDistancesPrices() 2246 unsigned offset = (unsigned)1 << footerBits;
in FillDistancesPrices() 2249 if (footerBits)
in FillDistancesPrices() 2257 while (--footerBits);
in FillDistancesPrices() 2580 unsigned footerBits = ((posSlot >> 1) - 1);
in LzmaEnc_CodeOneBlock() local 2584 unsigned base = ((2 | (posSlot & 1)) << footerBits);
in LzmaEnc_CodeOneBlock() 2585 RcTree_ReverseEncode(&p->rc, p->posEncoders + base, footerBits, (unsigned)(dist /* - base */));
in LzmaEnc_CodeOneBlock() 2589 UInt32 pos2 = (dist | 0xF) << (32 - footerBits);
in LzmaEnc_CodeOneBlock() [all...] |
Completed in 8 milliseconds