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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 625 int lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
627 if (lenEnd < 2)
640 int len = lenEnd;
700 if (cur == lenEnd)
862 while (lenEnd < offset)
863 _optimum[++lenEnd].Price = kIfinityPrice;
889 while (lenEnd < cur + lenTest)
890 _optimum[++lenEnd].Price = kIfinityPrice;
932 while (lenEnd < cur + offset)
933 _optimum[++lenEnd].Price = kIfinityPrice;
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 625 UInt32 lenEnd = ((lenMain >= repLens[repMaxIndex]) ? lenMain : repLens[repMaxIndex]);
627 if(lenEnd < 2)
640 UInt32 len = lenEnd;
700 if (cur == lenEnd)
862 while (lenEnd < offset)
863 _optimum[++lenEnd].Price = kIfinityPrice;
889 while (lenEnd < cur + lenTest)
890 _optimum[++lenEnd].Price = kIfinityPrice;
932 while(lenEnd < cur + offset)
933 _optimum[++lenEnd].Price = kIfinityPrice;
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaEnc.c 965 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur;
1067 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
1069 if (lenEnd < 2)
1079 len = lenEnd;
1153 for (i = cur; i <= lenEnd; i++)
1169 if (cur == lenEnd)
    [all...]
  /external/lzma/C/
LzmaEnc.c 944 UInt32 numAvail, mainLen, numPairs, repMaxIndex, i, posState, lenEnd, len, cur;
1046 lenEnd = ((mainLen >= repLens[repMaxIndex]) ? mainLen : repLens[repMaxIndex]);
1048 if (lenEnd < 2)
1058 len = lenEnd;
1132 for (i = cur; i <= lenEnd; i++)
1148 if (cur == lenEnd)
    [all...]

Completed in 623 milliseconds