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

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 617 int shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState);
618 if (shortRepPrice < _optimum[1].Price)
620 _optimum[1].Price = shortRepPrice;
829 int shortRepPrice = repMatchPrice + GetRepLen1Price(state, posState);
830 if (shortRepPrice <= nextOptimum.Price)
832 nextOptimum.Price = shortRepPrice;
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 617 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState);
618 if (shortRepPrice < _optimum[1].Price)
620 _optimum[1].Price = shortRepPrice;
829 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(state, posState);
830 if (shortRepPrice <= nextOptimum.Price)
832 nextOptimum.Price = shortRepPrice;
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 1026 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, p->state, posState);
1027 if (shortRepPrice < p->opt[1].price)
1029 p->opt[1].price = shortRepPrice;
1247 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, state, posState);
1248 if (shortRepPrice <= nextOpt->price)
1250 nextOpt->price = shortRepPrice;
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 1027 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, p->state, posState);
1028 if (shortRepPrice < p->opt[1].price)
1030 p->opt[1].price = shortRepPrice;
1248 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, state, posState);
1249 if (shortRepPrice <= nextOpt->price)
1251 nextOpt->price = shortRepPrice;
    [all...]
  /external/lzma/C/
LzmaEnc.c 1026 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, p->state, posState);
1027 if (shortRepPrice < p->opt[1].price)
1029 p->opt[1].price = shortRepPrice;
    [all...]

Completed in 291 milliseconds