OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:matchbit
(Results
1 - 4
of
4
) sorted by null
/external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java
76
int
matchBit
= (matchByte >> 7) & 1;
78
int bit = rangeDecoder.DecodeBit(m_Decoders, ((1 +
matchBit
) << 8) + symbol);
80
if (
matchBit
!= bit)
Encoder.java
99
int
matchBit
= ((matchByte >> i) & 1);
100
state += ((1 +
matchBit
) << 8);
101
same = (
matchBit
== bit);
117
int
matchBit
= (matchByte >> i) & 1;
119
price += SevenZip.Compression.RangeCoder.Encoder.GetPrice(m_Encoders[((1 +
matchBit
) << 8) + context], bit);
121
if (
matchBit
!= bit)
[
all
...]
/external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs
83
uint
matchBit
= (uint)(matchByte >> 7) & 1;
85
uint bit = m_Decoders[((1 +
matchBit
) << 8) + symbol].Decode(rangeDecoder);
87
if (
matchBit
!= bit)
LzmaEncoder.cs
99
uint
matchBit
= (uint)((matchByte >> i) & 1);
100
state += ((1 +
matchBit
) << 8);
101
same = (
matchBit
== bit);
117
uint
matchBit
= (uint)(matchByte >> i) & 1;
119
price += m_Encoders[((1 +
matchBit
) << 8) + context].GetPrice(bit);
121
if (
matchBit
!= bit)
[
all
...]
Completed in 3686 milliseconds