OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kNumMoveBits
(Results
1 - 12
of
12
) sorted by null
/external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs
9
const int
kNumMoveBits
= 5;
20
Prob += (kBitModelTotal - Prob) >>
kNumMoveBits
;
22
Prob -= (Prob) >>
kNumMoveBits
;
33
Prob += (kBitModelTotal - Prob) >>
kNumMoveBits
;
39
Prob -= (Prob) >>
kNumMoveBits
;
75
const int
kNumMoveBits
= 5;
95
Prob += (kBitModelTotal - Prob) >>
kNumMoveBits
;
107
Prob -= (Prob) >>
kNumMoveBits
;
/external/lzma/Java/SevenZip/Compression/RangeCoder/
Decoder.java
10
static final int
kNumMoveBits
= 5;
61
probs[index] = (short)(prob + ((kBitModelTotal - prob) >>>
kNumMoveBits
));
73
probs[index] = (short)(prob - ((prob) >>>
kNumMoveBits
));
Encoder.java
10
static final int
kNumMoveBits
= 5;
109
probs[index] = (short)(prob + ((kBitModelTotal - prob) >>>
kNumMoveBits
));
115
probs[index] = (short)(prob - ((prob) >>>
kNumMoveBits
));
/external/lzma/CPP/7zip/Compress/
Bcj2Coder.h
15
const int
kNumMoveBits
= 5;
30
NCompress::NRangeCoder::CBitEncoder<
kNumMoveBits
> _statusEncoder[256 + 2];
74
NCompress::NRangeCoder::CBitDecoder<
kNumMoveBits
> _statusDecoder[256 + 2];
/external/chromium_org/third_party/lzma_sdk/
Bcj2.c
20
#define
kNumMoveBits
5
30
#define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >>
kNumMoveBits
)); NORMALIZE;
31
#define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >>
kNumMoveBits
)); NORMALIZE;
LzmaDec.c
13
#define
kNumMoveBits
5
20
#define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >>
kNumMoveBits
));
21
#define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >>
kNumMoveBits
));
LzmaEnc.c
38
#define
kNumMoveBits
5
559
ttt += (kBitModelTotal - ttt) >>
kNumMoveBits
;
565
ttt -= ttt >>
kNumMoveBits
;
[
all
...]
/external/lzma/C/
Bcj2.c
20
#define
kNumMoveBits
5
30
#define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >>
kNumMoveBits
)); NORMALIZE;
31
#define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >>
kNumMoveBits
)); NORMALIZE;
LzmaDec.c
13
#define
kNumMoveBits
5
20
#define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >>
kNumMoveBits
));
21
#define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >>
kNumMoveBits
));
LzmaEnc.c
38
#define
kNumMoveBits
5
559
ttt += (kBitModelTotal - ttt) >>
kNumMoveBits
;
565
ttt -= ttt >>
kNumMoveBits
;
[
all
...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaDec.c
14
#define
kNumMoveBits
5
21
#define UPDATE_0(p) range = bound; *(p) = (CLzmaProb)(ttt + ((kBitModelTotal - ttt) >>
kNumMoveBits
));
22
#define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CLzmaProb)(ttt - (ttt >>
kNumMoveBits
));
LzmaEnc.c
39
#define
kNumMoveBits
5
560
ttt += (kBitModelTotal - ttt) >>
kNumMoveBits
;
566
ttt -= ttt >>
kNumMoveBits
;
[
all
...]
Completed in 218 milliseconds