Home
last modified time | relevance | path

Searched refs:kNumMoveBits (Results 1 – 7 of 7) sorted by relevance

/external/lzma/CS/7zip/Compress/RangeCoder/
DRangeCoderBit.cs9 const int kNumMoveBits = 5; field
20 Prob += (kBitModelTotal - Prob) >> kNumMoveBits; in UpdateModel()
22 Prob -= (Prob) >> kNumMoveBits; in UpdateModel()
33 Prob += (kBitModelTotal - Prob) >> kNumMoveBits; in Encode()
39 Prob -= (Prob) >> kNumMoveBits; in Encode()
75 const int kNumMoveBits = 5; field
95 Prob += (kBitModelTotal - Prob) >> kNumMoveBits; in Decode()
107 Prob -= (Prob) >> kNumMoveBits; in Decode()
/external/lzma/Java/SevenZip/Compression/RangeCoder/
DDecoder.java10 static final int kNumMoveBits = 5; field in Decoder
61 probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits)); in DecodeBit()
73 probs[index] = (short)(prob - ((prob) >>> kNumMoveBits)); in DecodeBit()
DEncoder.java10 static final int kNumMoveBits = 5; field in Encoder
109 probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits)); in Encode()
115 probs[index] = (short)(prob - ((prob) >>> kNumMoveBits)); in Encode()
/external/lzma/CPP/7zip/Compress/
DBcj2Coder.h15 const int kNumMoveBits = 5; variable
30 NCompress::NRangeCoder::CBitEncoder<kNumMoveBits> _statusEncoder[256 + 2];
74 NCompress::NRangeCoder::CBitDecoder<kNumMoveBits> _statusDecoder[256 + 2];
/external/lzma/C/
DBcj2.c20 #define kNumMoveBits 5 macro
30 #define UPDATE_0(p) range = bound; *(p) = (CProb)(ttt + ((kBitModelTotal - ttt) >> kNumMoveBits)); …
31 #define UPDATE_1(p) range -= bound; code -= bound; *(p) = (CProb)(ttt - (ttt >> kNumMoveBits)); NOR…
DLzmaDec.c13 #define kNumMoveBits 5 macro
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));
DLzmaEnc.c38 #define kNumMoveBits 5 macro
559 ttt += (kBitModelTotal - ttt) >> kNumMoveBits; in RangeEnc_EncodeBit()
565 ttt -= ttt >> kNumMoveBits; in RangeEnc_EncodeBit()