Searched refs:normalMatchPrice (Results 1 – 6 of 6) sorted by relevance
/external/lzma/Java/Tukaani/src/org/tukaani/xz/lzma/ |
D | LZMAEncoderNormal.java | 241 int normalMatchPrice = getNormalMatchPrice(anyMatchPrice, in getNextSymbol() local 252 int price = getMatchAndLenPrice(normalMatchPrice, in getNextSymbol() 510 int normalMatchPrice = getNormalMatchPrice(anyMatchPrice, 522 int matchAndLenPrice = getMatchAndLenPrice(normalMatchPrice,
|
D | LZMAEncoder.java | 407 int getMatchAndLenPrice(int normalMatchPrice, in getMatchAndLenPrice() argument 409 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/libgdx/gdx/src/com/badlogic/gdx/utils/compression/lzma/ |
D | Encoder.java | 599 …int normalMatchPrice = matchPrice + com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice… in GetOptimum() local 608 int curAndLenPrice = normalMatchPrice + GetPosLenPrice(distance, len, posState); in GetOptimum() 851 …normalMatchPrice = matchPrice + com.badlogic.gdx.utils.compression.rangecoder.Encoder.GetPrice0(_i… in GetOptimum() 861 int curAndLenPrice = normalMatchPrice + GetPosLenPrice(curBack, lenTest, posState); in GetOptimum()
|
/external/lzma/C/ |
D | LzmaEnc.c | 945 UInt32 matchPrice, repMatchPrice, normalMatchPrice; in GetOptimum() local 1085 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]); in GetOptimum() 1098 … UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_MIN]; in GetOptimum() 1412 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]); in GetOptimum() local 1425 …UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][lenTest - LZMA_MATCH_LEN_MIN… in GetOptimum()
|