Searched refs:normalMatchPrice (Results 1 – 6 of 6) sorted by relevance
/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/chromium_org/third_party/lzma_sdk/ |
D | LzmaEnc.c | 932 UInt32 matchPrice, repMatchPrice, normalMatchPrice; in GetOptimum() local 1072 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]); in GetOptimum() 1085 … UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_MIN]; in GetOptimum() 1399 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]); in GetOptimum() local 1412 …UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][lenTest - LZMA_MATCH_LEN_MIN… in GetOptimum()
|
/external/lzma/C/ |
D | LzmaEnc.c | 932 UInt32 matchPrice, repMatchPrice, normalMatchPrice; in GetOptimum() local 1072 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]); in GetOptimum() 1085 … UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_MIN]; in GetOptimum() 1399 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]); in GetOptimum() local 1412 …UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][lenTest - LZMA_MATCH_LEN_MIN… in GetOptimum()
|
/external/chromium_org/third_party/ots/third_party/lzma_sdk/ |
D | LzmaEnc.c | 933 UInt32 matchPrice, repMatchPrice, normalMatchPrice; in GetOptimum() local 1073 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]); in GetOptimum() 1086 … UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_MIN]; in GetOptimum() 1400 UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]); in GetOptimum() local 1413 …UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][lenTest - LZMA_MATCH_LEN_MIN… in GetOptimum()
|
/external/chromium_org/third_party/brotli/src/ |
D | ots-lzma.patch | 3837 + UInt32 matchPrice, repMatchPrice, normalMatchPrice; 3977 + normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]); 3990 + UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][len - LZMA_MATCH_LEN_M… 4304 + UInt32 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[state]); 4317 + UInt32 curAndLenPrice = normalMatchPrice + p->lenEnc.prices[posState][lenTest - LZMA_MATCH…
|