Home
last modified time | relevance | path

Searched refs:kNumOpts (Results 1 – 3 of 3) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java279 static final int kNumOpts = 1 << 12; field in Encoder
303 Optimal[] _optimum = new Optimal[kNumOpts];
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create()
384 for (int i = 0; i < kNumOpts; i++) in Encoder()
840 numAvailableBytesFull = Math.min(kNumOpts - 1 - cur, numAvailableBytesFull); in GetOptimum()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs279 const UInt32 kNumOpts = 1 << 12; field in SevenZip.Compression.LZMA.Encoder
303 Optimal[] _optimum = new Optimal[kNumOpts];
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1); in Create()
384 for (int i = 0; i < kNumOpts; i++) in Encoder()
840 numAvailableBytesFull = Math.Min(kNumOpts - 1 - cur, numAvailableBytesFull); in GetOptimum()
/external/lzma/C/
DLzmaEnc.c189 #define kNumOpts (1 << 11) macro
190 #define kPackReserve (kNumOpts * 8)
384 COptimal opt[kNumOpts];
1352 if (cur >= kNumOpts - 64) in GetOptimum()
1526 unsigned temp = kNumOpts - 1 - cur; in GetOptimum()
2539 if (processed + kNumOpts + 300 >= maxUnpackSize in LzmaEnc_CodeOneBlock()
2561 UInt32 beforeSize = kNumOpts; in LzmaEnc_Alloc()
2672 for (i = 0; i < kNumOpts; i++) in LzmaEnc_Init()