OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:_isrep
(Results
1 - 2
of
2
) sorted by null
/external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs
308
RangeCoder.BitEncoder[]
_isRep
= new RangeCoder.BitEncoder[Base.kNumStates];
409
_isRep
[i].Init();
613
UInt32 repMatchPrice = matchPrice +
_isRep
[_state.Index].GetPrice1();
666
UInt32 normalMatchPrice = matchPrice +
_isRep
[_state.Index].GetPrice0();
824
repMatchPrice = matchPrice +
_isRep
[state.Index].GetPrice1();
859
_isRep
[state2.Index].GetPrice1();
927
UInt32 nextRepMatchPrice = nextMatchPrice +
_isRep
[state2.Index].GetPrice1();
960
normalMatchPrice = matchPrice +
_isRep
[state.Index].GetPrice0();
1002
UInt32 nextRepMatchPrice = nextMatchPrice +
_isRep
[state2.Index].GetPrice1();
1042
_isRep
[_state.Index].Encode(_rangeEncoder, 0);
[
all
...]
/external/lzma/Java/SevenZip/Compression/LZMA/
Encoder.java
308
short[]
_isRep
= new short[Base.kNumStates];
402
SevenZip.Compression.RangeCoder.Encoder.InitBitModels(
_isRep
);
613
int repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(
_isRep
[_state]);
666
int normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(
_isRep
[_state]);
824
repMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(
_isRep
[state]);
859
SevenZip.Compression.RangeCoder.Encoder.GetPrice1(
_isRep
[state2]);
927
int nextRepMatchPrice = nextMatchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(
_isRep
[state2]);
960
normalMatchPrice = matchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice0(
_isRep
[state]);
1002
int nextRepMatchPrice = nextMatchPrice + SevenZip.Compression.RangeCoder.Encoder.GetPrice1(
_isRep
[state2]);
1042
_rangeEncoder.Encode(
_isRep
, _state, 0);
[
all
...]
Completed in 120 milliseconds