Home
last modified time | relevance | path

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

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java571 int repMaxIndex = 0; in GetOptimum() local
577 if (repLens[i] > repLens[repMaxIndex]) in GetOptimum()
578 repMaxIndex = i; in GetOptimum()
580 if (repLens[repMaxIndex] >= _numFastBytes) in GetOptimum()
582 backRes = repMaxIndex; in GetOptimum()
583 int lenRes = repLens[repMaxIndex]; in GetOptimum()
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2) in GetOptimum()
625 int lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]); in GetOptimum()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs571 UInt32 repMaxIndex = 0; in GetOptimum()
577 if (repLens[i] > repLens[repMaxIndex]) in GetOptimum()
578 repMaxIndex = i; in GetOptimum()
580 if (repLens[repMaxIndex] >= _numFastBytes) in GetOptimum()
582 backRes = repMaxIndex; in GetOptimum()
583 UInt32 lenRes = repLens[repMaxIndex]; in GetOptimum()
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2) in GetOptimum()
625 UInt32 lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]); in GetOptimum()
/external/lzma/C/
DLzmaEnc.c1127 unsigned numPairs, mainLen, repMaxIndex, i, posState; in GetOptimum() local
1152 repMaxIndex = 0; in GetOptimum()
1168 if (len > repLens[repMaxIndex]) in GetOptimum()
1169 repMaxIndex = i; in GetOptimum()
1172 if (repLens[repMaxIndex] >= p->numFastBytes) in GetOptimum()
1175 p->backRes = (UInt32)repMaxIndex; in GetOptimum()
1176 len = repLens[repMaxIndex]; in GetOptimum()
1193 last = repLens[repMaxIndex]; in GetOptimum()