Home
last modified time | relevance | path

Searched refs:curPrice (Results 1 – 3 of 3) sorted by relevance

/external/lzma/Java/SevenZip/Compression/LZMA/
DEncoder.java800 int curPrice = _optimum[cur].Price; in GetOptimum() local
807 int curAnd1Price = curPrice + in GetOptimum()
823 …matchPrice = curPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state << Base.… in GetOptimum()
/external/lzma/CS/7zip/Compress/LZMA/
DLzmaEncoder.cs800 UInt32 curPrice = _optimum[cur].Price; in GetOptimum()
807 UInt32 curAnd1Price = curPrice + in GetOptimum()
823 …matchPrice = curPrice + _isMatch[(state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1(… in GetOptimum()
/external/lzma/C/
DLzmaEnc.c1190 UInt32 curPrice, curAnd1Price, matchPrice, repMatchPrice; in GetOptimum() local
1278 curPrice = curOpt->price; in GetOptimum()
1286 curAnd1Price = curPrice + GET_PRICE_0(p->isMatch[state][posState]); in GetOptimum()
1305 matchPrice = curPrice + GET_PRICE_1(p->isMatch[state][posState]); in GetOptimum()