Searched refs:repLens (Results 1 - 4 of 4) sorted by relevance

/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
H A DLZMAEncoderNormal.java31 private final int[] repLens = new int[REPS]; field in class:LZMAEncoderNormal
128 repLens[rep] = lz.getMatchLen(reps[rep], avail);
130 if (repLens[rep] < MATCH_LEN_MIN) {
131 repLens[rep] = 0;
135 if (repLens[rep] > repLens[repBest])
140 if (repLens[repBest] >= niceLen) {
142 skip(repLens[repBest] - 1);
143 return repLens[repBest];
169 && repLens[repBes
[all...]
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaEncoder.cs536 UInt32[] repLens = new UInt32[Base.kNumRepDistances]; field in class:SevenZip.Compression.LZMA.Encoder
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
577 if (repLens[i] > repLens[repMaxIndex])
580 if (repLens[repMaxIndex] >= _numFastBytes)
583 UInt32 lenRes = repLens[repMaxIndex];
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
625 UInt32 lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
647 UInt32 repLen = repLens[
[all...]
/external/lzma/Java/SevenZip/Compression/LZMA/
H A DEncoder.java536 int[] repLens = new int[Base.kNumRepDistances]; field in class:Encoder
576 repLens[i] = _matchFinder.GetMatchLen(0 - 1, reps[i], Base.kMatchMaxLen);
577 if (repLens[i] > repLens[repMaxIndex])
580 if (repLens[repMaxIndex] >= _numFastBytes)
583 int lenRes = repLens[repMaxIndex];
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
625 int lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
647 int repLen = repLens[
[all...]
/external/lzma/C/
H A DLzmaEnc.c946 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS]; local
987 repLens[i] = 0;
991 repLens[i] = lenTest;
992 if (lenTest > repLens[repMaxIndex])
995 if (repLens[repMaxIndex] >= p->numFastBytes)
999 lenRes = repLens[repMaxIndex];
1014 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1046 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
1065 UInt32 repLen = repLens[
[all...]

Completed in 95 milliseconds