OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:matchBit
(Results
1 - 7
of
7
) sorted by null
/external/xz-java/src/org/tukaani/xz/lzma/
LZMADecoder.java
167
int
matchBit
;
172
matchBit
= matchByte & offset;
173
bit = rc.decodeBit(probs, offset +
matchBit
+ symbol);
175
offset &= (0 - bit) ^ ~
matchBit
;
LZMAEncoder.java
598
int
matchBit
;
603
matchBit
= matchByte & offset;
604
subencoderIndex = offset +
matchBit
+ (symbol >>> 8);
637
int
matchBit
;
644
matchBit
= matchByte & offset;
645
subencoderIndex = offset +
matchBit
+ (symbol >>> 8);
/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
...]
/external/lzma/CPP/7zip/Bundles/LzmaSpec/
LzmaSpec.cpp
387
unsigned
matchBit
= (matchByte >> 7) & 1;
389
unsigned bit = RangeDec.DecodeBit(&probs[((1 +
matchBit
) << 8) + symbol]);
391
if (
matchBit
!= bit)
Completed in 335 milliseconds