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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 571 int repMaxIndex = 0;
577 if (repLens[i] > repLens[repMaxIndex])
578 repMaxIndex = i;
580 if (repLens[repMaxIndex] >= _numFastBytes)
582 backRes = repMaxIndex;
583 int lenRes = repLens[repMaxIndex];
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
625 int lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 571 UInt32 repMaxIndex = 0;
577 if (repLens[i] > repLens[repMaxIndex])
578 repMaxIndex = i;
580 if (repLens[repMaxIndex] >= _numFastBytes)
582 backRes = repMaxIndex;
583 UInt32 lenRes = repLens[repMaxIndex];
598 if (lenMain < 2 && currentByte != matchByte && repLens[repMaxIndex] < 2)
625 UInt32 lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 931 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur;
965 repMaxIndex = 0;
979 if (lenTest > repLens[repMaxIndex])
980 repMaxIndex = i;
982 if (repLens[repMaxIndex] >= p->numFastBytes)
985 *backRes = repMaxIndex;
986 lenRes = repLens[repMaxIndex];
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1033 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 932 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur;
966 repMaxIndex = 0;
980 if (lenTest > repLens[repMaxIndex])
981 repMaxIndex = i;
983 if (repLens[repMaxIndex] >= p->numFastBytes)
986 *backRes = repMaxIndex;
987 lenRes = repLens[repMaxIndex];
1002 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1034 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
    [all...]
  /external/lzma/C/
LzmaEnc.c 931 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur;
965 repMaxIndex = 0;
979 if (lenTest > repLens[repMaxIndex])
980 repMaxIndex = i;
982 if (repLens[repMaxIndex] >= p->numFastBytes)
985 *backRes = repMaxIndex;
986 lenRes = repLens[repMaxIndex];
1001 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1033 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
    [all...]

Completed in 71 milliseconds