HomeSort by relevance Sort by last modified time
    Searched refs:repLens (Results 1 - 5 of 5) sorted by null

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 536 int[] repLens = new int[Base.kNumRepDistances];
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[i];
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 536 UInt32[] repLens = new UInt32[Base.kNumRepDistances];
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[i];
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 933 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS];
974 repLens[i] = 0;
978 repLens[i] = lenTest;
979 if (lenTest > repLens[repMaxIndex])
982 if (repLens[repMaxIndex] >= p->numFastBytes)
986 lenRes = repLens[repMaxIndex];
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1033 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
1052 UInt32 repLen = repLens[i]
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 934 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS];
975 repLens[i] = 0;
979 repLens[i] = lenTest;
980 if (lenTest > repLens[repMaxIndex])
983 if (repLens[repMaxIndex] >= p->numFastBytes)
987 lenRes = repLens[repMaxIndex];
1002 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1034 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
1053 UInt32 repLen = repLens[i]
    [all...]
  /external/lzma/C/
LzmaEnc.c 933 UInt32 reps[LZMA_NUM_REPS], repLens[LZMA_NUM_REPS];
974 repLens[i] = 0;
978 repLens[i] = lenTest;
979 if (lenTest > repLens[repMaxIndex])
982 if (repLens[repMaxIndex] >= p->numFastBytes)
986 lenRes = repLens[repMaxIndex];
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1033 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
1052 UInt32 repLen = repLens[i];
    [all...]

Completed in 85 milliseconds