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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 653 int curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState);
655 if (curAndLenPrice < optimum.Price)
657 optimum.Price = curAndLenPrice;
677 int curAndLenPrice = normalMatchPrice + GetPosLenPrice(distance, len, posState);
679 if (curAndLenPrice < optimum.Price)
681 optimum.Price = curAndLenPrice;
864 int curAndLenPrice = nextRepMatchPrice + GetRepPrice(
867 if (curAndLenPrice < optimum.Price)
869 optimum.Price = curAndLenPrice;
891 int curAndLenPrice = repMatchPrice + GetRepPrice(repIndex, lenTest, state, posState);
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 1059 UInt32 curAndLenPrice = price + p->repLenEnc.prices[posState][repLen - 2];
1061 if (curAndLenPrice < opt->price)
1063 opt->price = curAndLenPrice;
1085 UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_MIN];
1088 curAndLenPrice += p->distancesPrices[lenToPosState][distance];
1093 curAndLenPrice += p->alignPrices[distance & kAlignMask] + p->posSlotPrices[lenToPosState][slot];
1096 if (curAndLenPrice < opt->price)
1098 opt->price = curAndLenPrice;
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 1060 UInt32 curAndLenPrice = price + p->repLenEnc.prices[posState][repLen - 2];
1062 if (curAndLenPrice < opt->price)
1064 opt->price = curAndLenPrice;
1086 UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_MIN];
1089 curAndLenPrice += p->distancesPrices[lenToPosState][distance];
1094 curAndLenPrice += p->alignPrices[distance & kAlignMask] + p->posSlotPrices[lenToPosState][slot];
1097 if (curAndLenPrice < opt->price)
1099 opt->price = curAndLenPrice;
    [all...]
  /external/lzma/C/
LzmaEnc.c 1059 UInt32 curAndLenPrice = price + p->repLenEnc.prices[posState][repLen - 2];
1061 if (curAndLenPrice < opt->price)
1063 opt->price = curAndLenPrice;
1085 UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_MIN];
1088 curAndLenPrice += p->distancesPrices[lenToPosState][distance];
1093 curAndLenPrice += p->alignPrices[distance & kAlignMask] + p->posSlotPrices[lenToPosState][slot];
1096 if (curAndLenPrice < opt->price)
1098 opt->price = curAndLenPrice;
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 653 UInt32 curAndLenPrice = price + _repMatchLenEncoder.GetPrice(repLen - 2, posState);
655 if (curAndLenPrice < optimum.Price)
657 optimum.Price = curAndLenPrice;
677 UInt32 curAndLenPrice = normalMatchPrice + GetPosLenPrice(distance, len, posState);
679 if (curAndLenPrice < optimum.Price)
681 optimum.Price = curAndLenPrice;
864 UInt32 curAndLenPrice = nextRepMatchPrice + GetRepPrice(
867 if (curAndLenPrice < optimum.Price)
869 optimum.Price = curAndLenPrice;
891 UInt32 curAndLenPrice = repMatchPrice + GetRepPrice(repIndex, lenTest, state, posState);
    [all...]

Completed in 249 milliseconds