Searched refs:shortRepPrice (Results 1 – 4 of 4) sorted by relevance
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/ |
D | LZMAEncoderNormal.java | 190 int shortRepPrice = getShortRepPrice(anyRepPrice, in getNextSymbol() local 192 if (shortRepPrice < opts[1].price) in getNextSymbol() 193 opts[1].set1(shortRepPrice, 0, 0); in getNextSymbol() 391 int shortRepPrice = getShortRepPrice(anyRepPrice, 394 if (shortRepPrice <= opts[optCur + 1].price) { 395 opts[optCur + 1].set1(shortRepPrice, optCur, 0);
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Encoder.java | 617 int shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState); in GetOptimum() local 618 if (shortRepPrice < _optimum[1].Price) in GetOptimum() 620 _optimum[1].Price = shortRepPrice; in GetOptimum() 829 int shortRepPrice = repMatchPrice + GetRepLen1Price(state, posState); in GetOptimum() local 830 if (shortRepPrice <= nextOptimum.Price) in GetOptimum() 832 nextOptimum.Price = shortRepPrice; in GetOptimum()
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaEncoder.cs | 617 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(_state, posState); in GetOptimum() 618 if (shortRepPrice < _optimum[1].Price) in GetOptimum() 620 _optimum[1].Price = shortRepPrice; in GetOptimum() 829 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(state, posState); in GetOptimum() 830 if (shortRepPrice <= nextOptimum.Price) in GetOptimum() 832 nextOptimum.Price = shortRepPrice; in GetOptimum()
|
/external/lzma/C/ |
D | LzmaEnc.c | 1039 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, p->state, posState); in GetOptimum() local 1040 if (shortRepPrice < p->opt[1].price) in GetOptimum() 1042 p->opt[1].price = shortRepPrice; in GetOptimum() 1260 UInt32 shortRepPrice = repMatchPrice + GetRepLen1Price(p, state, posState); in GetOptimum() local 1261 if (shortRepPrice <= nextOpt->price) in GetOptimum() 1263 nextOpt->price = shortRepPrice; in GetOptimum()
|