Home
last modified time | relevance | path

Searched refs:numFastBytes (Results 1 – 4 of 4) sorted by relevance

/external/lzma/CS/7zip/Compress/LzmaAlone/
DLzmaAlone.cs251 Int32 numFastBytes = 128; in Main2()
260 if (!GetNumber((string)parser[(int)Key.FastBytes].PostStrings[0], out numFastBytes)) in Main2()
290 (Int32)(numFastBytes), in Main2()
/external/lzma/C/
DLzmaEnc.c311 UInt32 numFastBytes; member
458 p->numFastBytes = fb; in LzmaEnc_SetProps()
886 if (lenRes == p->numFastBytes) in ReadMatchDistances()
1042 if (repLens[repMaxIndex] >= p->numFastBytes) in GetOptimum()
1052 if (mainLen >= p->numFastBytes) in GetOptimum()
1202 if (newLen >= p->numFastBytes) in GetOptimum()
1328 numAvail = (numAvailFull <= p->numFastBytes ? numAvailFull : p->numFastBytes); in GetOptimum()
1336 UInt32 limit = p->numFastBytes + 1; in GetOptimum()
1407 UInt32 limit = lenTest2 + p->numFastBytes; in GetOptimum()
1499 UInt32 limit = lenTest2 + p->numFastBytes; in GetOptimum()
[all …]
/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java1375 public boolean SetNumFastBytes(int numFastBytes) in SetNumFastBytes() argument
1377 if (numFastBytes < 5 || numFastBytes > Base.kMatchMaxLen) in SetNumFastBytes()
1379 _numFastBytes = numFastBytes; in SetNumFastBytes()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs1379 Int32 numFastBytes = (Int32)prop; in SetCoderProperties()
1380 if (numFastBytes < 5 || numFastBytes > Base.kMatchMaxLen) in SetCoderProperties()
1382 _numFastBytes = (UInt32)numFastBytes; in SetCoderProperties()