Searched refs:kNumMoveBits (Results 1 - 12 of 12) sorted by relevance

/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBit.cs9 const int kNumMoveBits = 5; field in struct:SevenZip.Compression.RangeCoder.BitEncoder
20 Prob += (kBitModelTotal - Prob) >> kNumMoveBits;
22 Prob -= (Prob) >> kNumMoveBits;
33 Prob += (kBitModelTotal - Prob) >> kNumMoveBits;
39 Prob -= (Prob) >> kNumMoveBits;
75 const int kNumMoveBits = 5; field in struct:SevenZip.Compression.RangeCoder.BitDecoder
95 Prob += (kBitModelTotal - Prob) >> kNumMoveBits;
107 Prob -= (Prob) >> kNumMoveBits;
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DDecoder.java10 static final int kNumMoveBits = 5; field in class:Decoder
61 probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits));
73 probs[index] = (short)(prob - ((prob) >>> kNumMoveBits));
H A DEncoder.java10 static final int kNumMoveBits = 5; field in class:Encoder
109 probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits));
115 probs[index] = (short)(prob - ((prob) >>> kNumMoveBits));
/external/lzma/CPP/7zip/Compress/
H A DBcj2Coder.h15 const int kNumMoveBits = 5; member in namespace:NCompress::NBcj2
30 NCompress::NRangeCoder::CBitEncoder<kNumMoveBits> _statusEncoder[256 + 2];
74 NCompress::NRangeCoder::CBitDecoder<kNumMoveBits> _statusDecoder[256 + 2];
/external/chromium_org/third_party/lzma_sdk/
H A DBcj2.c20 #define kNumMoveBits 5 macro
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;
H A 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));
H A DLzmaEnc.c38 #define kNumMoveBits 5 macro
559 ttt += (kBitModelTotal - ttt) >> kNumMoveBits;
565 ttt -= ttt >> kNumMoveBits;
/external/lzma/C/
H A DBcj2.c20 #define kNumMoveBits 5 macro
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;
H A 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));
H A DLzmaEnc.c38 #define kNumMoveBits 5 macro
559 ttt += (kBitModelTotal - ttt) >> kNumMoveBits;
565 ttt -= ttt >> kNumMoveBits;
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaDec.c14 #define kNumMoveBits 5 macro
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));
H A DLzmaEnc.c39 #define kNumMoveBits 5 macro
560 ttt += (kBitModelTotal - ttt) >> kNumMoveBits;
566 ttt -= ttt >> kNumMoveBits;

Completed in 225 milliseconds