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

  /external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/
LZMAEncoderNormal.java 223 int repLen = repLens[rep];
224 if (repLen < MATCH_LEN_MIN)
230 int price = longRepPrice + repLenEncoder.getPrice(repLen,
232 if (price < opts[repLen].price)
233 opts[repLen].set1(price, 0, rep);
234 } while (--repLen >= MATCH_LEN_MIN);
  /device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
LzmaEnc.c 1112 UInt32 repLen = repLens[i];
1114 if (repLen < 2)
1119 UInt32 curAndLenPrice = price + p->repLenEnc.prices[posState][repLen - 2];
1120 COptimal *opt = &p->opt[repLen];
1129 while (--repLen >= 2);
    [all...]
  /external/lzma/C/
LzmaEnc.c 1112 UInt32 repLen = repLens[i];
1114 if (repLen < 2)
1119 UInt32 curAndLenPrice = price + p->repLenEnc.prices[posState][repLen - 2];
1120 COptimal *opt = &p->opt[repLen];
1129 while (--repLen >= 2);
    [all...]
  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 647 int repLen = repLens[i];
648 if (repLen < 2)
653 int curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState);
654 Optimal optimum = _optimum[repLen];
663 while (--repLen >= 2);
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 647 UInt32 repLen = repLens[i];
648 if (repLen < 2)
653 UInt32 curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState);
654 Optimal optimum = _optimum[repLen];
663 while (--repLen >= 2);
    [all...]

Completed in 160 milliseconds