Searched refs:kNumMoveBits (Results 1 – 7 of 7) sorted by relevance
9 const int kNumMoveBits = 5; field20 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; field95 Prob += (kBitModelTotal - Prob) >> kNumMoveBits; in Decode()107 Prob -= (Prob) >> kNumMoveBits; in Decode()
10 static final int kNumMoveBits = 5; field in Decoder61 probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits)); in DecodeBit()73 probs[index] = (short)(prob - ((prob) >>> kNumMoveBits)); in DecodeBit()
10 static final int kNumMoveBits = 5; field in Encoder109 probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits)); in Encode()115 probs[index] = (short)(prob - ((prob) >>> kNumMoveBits)); in Encode()
15 const int kNumMoveBits = 5; variable30 NCompress::NRangeCoder::CBitEncoder<kNumMoveBits> _statusEncoder[256 + 2];74 NCompress::NRangeCoder::CBitDecoder<kNumMoveBits> _statusDecoder[256 + 2];
20 #define kNumMoveBits 5 macro30 #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…
13 #define kNumMoveBits 5 macro20 #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));
38 #define kNumMoveBits 5 macro559 ttt += (kBitModelTotal - ttt) >> kNumMoveBits; in RangeEnc_EncodeBit()565 ttt -= ttt >> kNumMoveBits; in RangeEnc_EncodeBit()