Searched refs:normalMatchPrice (Results 1 – 5 of 5) sorted by relevance
/external/xz-java/src/org/tukaani/xz/lzma/ |
D | LZMAEncoderNormal.java | 243 int normalMatchPrice = getNormalMatchPrice(anyMatchPrice, in getNextSymbol() local 254 int price = getMatchAndLenPrice(normalMatchPrice, in getNextSymbol() 512 int normalMatchPrice = getNormalMatchPrice(anyMatchPrice, 524 int matchAndLenPrice = getMatchAndLenPrice(normalMatchPrice,
|
D | LZMAEncoder.java | 446 int getMatchAndLenPrice(int normalMatchPrice, in getMatchAndLenPrice() argument 448 int price = normalMatchPrice in getMatchAndLenPrice()
|
/external/lzma/Java/SevenZip/Compression/LZMA/ |
D | Encoder.java | 666 …int normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[_stat… in GetOptimum() local 677 int curAndLenPrice = normalMatchPrice + GetPosLenPrice(distance, len, posState); in GetOptimum() 960 … normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[state]); in GetOptimum() 971 int curAndLenPrice = normalMatchPrice + GetPosLenPrice(curBack, lenTest, posState); in GetOptimum()
|
/external/lzma/CS/7zip/Compress/LZMA/ |
D | LzmaEncoder.cs | 666 UInt32 normalMatchPrice = matchPrice + _isRep[_state.Index].GetPrice0(); in GetOptimum() 677 UInt32 curAndLenPrice = normalMatchPrice + GetPosLenPrice(distance, len, posState); in GetOptimum() 960 normalMatchPrice = matchPrice + _isRep[state.Index].GetPrice0(); in GetOptimum() 971 UInt32 curAndLenPrice = normalMatchPrice + GetPosLenPrice(curBack, lenTest, posState); in GetOptimum()
|
/external/lzma/C/ |
D | LzmaEnc.c | 1274 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]); in GetOptimum() local 1286 UInt32 price = normalMatchPrice + GET_PRICE_LEN(&p->lenEnc, posState, len); in GetOptimum() 1739 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]); in GetOptimum() local 1759 UInt32 price = normalMatchPrice + GET_PRICE_LEN(&p->lenEnc, posState, len); in GetOptimum()
|