HomeSort by relevance Sort by last modified time
    Searched refs:matchPrice (Results 1 - 5 of 5) sorted by null

  /external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java 612 int matchPrice = SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(_state << Base.kNumPosStatesBitsMax) + posState]);
613 int repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[_state]);
666 int normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[_state]);
823 matchPrice = curPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isMatch[(state << Base.kNumPosStatesBitsMax) + posState]);
824 repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(_isRep[state]);
960 normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(_isRep[state]);
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.c 932 UInt32 matchPrice, repMatchPrice, normalMatchPrice;
1021 matchPrice = GET_PRICE_1(p->isMatch[p->state][posState]);
1022 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[p->state]);
1072 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]);
1127 UInt32 curPrice, curAnd1Price, matchPrice, repMatchPrice;
1242 matchPrice = curPrice + GET_PRICE_1(p->isMatch[state][posState]);
1243 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[state]);
    [all...]
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.c 933 UInt32 matchPrice, repMatchPrice, normalMatchPrice;
1022 matchPrice = GET_PRICE_1(p->isMatch[p->state][posState]);
1023 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[p->state]);
1073 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]);
1128 UInt32 curPrice, curAnd1Price, matchPrice, repMatchPrice;
1243 matchPrice = curPrice + GET_PRICE_1(p->isMatch[state][posState]);
1244 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[state]);
    [all...]
  /external/lzma/C/
LzmaEnc.c 932 UInt32 matchPrice, repMatchPrice, normalMatchPrice;
1021 matchPrice = GET_PRICE_1(p->isMatch[p->state][posState]);
1022 repMatchPrice = matchPrice + GET_PRICE_1(p->isRep[p->state]);
1072 normalMatchPrice = matchPrice + GET_PRICE_0(p->isRep[p->state]);
1127 UInt32 curPrice, curAnd1Price, matchPrice, repMatchPrice;
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 612 UInt32 matchPrice = _isMatch[(_state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
613 UInt32 repMatchPrice = matchPrice + _isRep[_state.Index].GetPrice1();
666 UInt32 normalMatchPrice = matchPrice + _isRep[_state.Index].GetPrice0();
823 matchPrice = curPrice + _isMatch[(state.Index << Base.kNumPosStatesBitsMax) + posState].GetPrice1();
824 repMatchPrice = matchPrice + _isRep[state.Index].GetPrice1();
960 normalMatchPrice = matchPrice + _isRep[state.Index].GetPrice0();
    [all...]

Completed in 202 milliseconds