Searched refs:kNumOpts (Results 1 - 5 of 5) sorted by relevance

/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs279 const UInt32 kNumOpts = 1 << 12; field in class:SevenZip.Compression.LZMA.Encoder
303 Optimal[] _optimum = new Optimal[kNumOpts];
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1);
384 for (int i = 0; i < kNumOpts; i++)
840 numAvailableBytesFull = Math.Min(kNumOpts - 1 - cur, numAvailableBytesFull);
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java279 static final int kNumOpts = 1 << 12; field in class:Encoder
303 Optimal[] _optimum = new Optimal[kNumOpts];
377 _matchFinder.Create(_dictionarySize, kNumOpts, _numFastBytes, Base.kMatchMaxLen + 1);
384 for (int i = 0; i < kNumOpts; i++)
840 numAvailableBytesFull = Math.min(kNumOpts - 1 - cur, numAvailableBytesFull);
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaEnc.c158 #define kNumOpts (1 << 12) macro
279 COptimal opt[kNumOpts];
1258 UInt32 temp = kNumOpts - 1 - cur;
1880 if (processed + kNumOpts + 300 >= maxUnpackSize ||
1881 RangeEnc_GetProcessed(&p->rc) + kNumOpts * 2 >= maxPackSize)
1899 UInt32 beforeSize = kNumOpts;
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaEnc.c159 #define kNumOpts (1 << 12) macro
280 COptimal opt[kNumOpts];
1259 UInt32 temp = kNumOpts - 1 - cur;
1881 if (processed + kNumOpts + 300 >= maxUnpackSize ||
1882 RangeEnc_GetProcessed(&p->rc) + kNumOpts * 2 >= maxPackSize)
1900 UInt32 beforeSize = kNumOpts;
/external/lzma/C/
H A DLzmaEnc.c158 #define kNumOpts (1 << 12) macro
279 COptimal opt[kNumOpts];
1258 UInt32 temp = kNumOpts - 1 - cur;
1880 if (processed + kNumOpts + 300 >= maxUnpackSize ||
1881 RangeEnc_GetProcessed(&p->rc) + kNumOpts * 2 >= maxPackSize)
1899 UInt32 beforeSize = kNumOpts;

Completed in 102 milliseconds