HomeSort by relevance Sort by last modified time
    Searched refs:repMaxIndex (Results 1 - 4 of 4) 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...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaEnc.c 965 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur;
999 repMaxIndex = 0;
1013 if (lenTest > repLens[repMaxIndex])
1014 repMaxIndex = i;
1016 if (repLens[repMaxIndex] >= p->numFastBytes)
1019 *backRes = repMaxIndex;
1020 lenRes = repLens[repMaxIndex];
1035 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1067 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
    [all...]
  /external/lzma/C/
LzmaEnc.c 944 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur;
978 repMaxIndex = 0;
992 if (lenTest > repLens[repMaxIndex])
993 repMaxIndex = i;
995 if (repLens[repMaxIndex] >= p->numFastBytes)
998 *backRes = repMaxIndex;
999 lenRes = repLens[repMaxIndex];
1014 if (mainLen < 2 && curByte != matchByte && repLens[repMaxIndex] < 2)
1046 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
    [all...]

Completed in 448 milliseconds