OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_Decoders
(Results
1 - 2
of
2
) sorted by null
/external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java
55
short[]
m_Decoders
= new short[0x300];
59
SevenZip.Compression.RangeCoder.Decoder.InitBitModels(
m_Decoders
);
66
symbol = (symbol << 1) | rangeDecoder.DecodeBit(
m_Decoders
, symbol);
78
int bit = rangeDecoder.DecodeBit(
m_Decoders
, ((1 + matchBit) << 8) + symbol);
83
symbol = (symbol << 1) | rangeDecoder.DecodeBit(
m_Decoders
, symbol);
/external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs
65
BitDecoder[]
m_Decoders
;
66
public void Create() {
m_Decoders
= new BitDecoder[0x300]; }
67
public void Init() { for (int i = 0; i < 0x300; i++)
m_Decoders
[i].Init(); }
73
symbol = (symbol << 1) |
m_Decoders
[symbol].Decode(rangeDecoder);
85
uint bit =
m_Decoders
[((1 + matchBit) << 8) + symbol].Decode(rangeDecoder);
90
symbol = (symbol << 1) |
m_Decoders
[symbol].Decode(rangeDecoder);
Completed in 29 milliseconds