Lines Matching refs:Prob
26 UInt32 Prob;
34 Prob += (kBitModelTotal - Prob) >> numMoveBits; in UpdateModel()
36 Prob -= (Prob) >> numMoveBits; in UpdateModel()
39 void Init() { Prob = kBitModelTotal / 2; } in Init()
52 UInt32 newBound = (encoder->Range >> kNumBitModelTotalBits) * this->Prob; in Encode()
56 this->Prob += (kBitModelTotal - this->Prob) >> numMoveBits; in Encode()
62 this->Prob -= (this->Prob) >> numMoveBits; in Encode()
72 …return ProbPrices[(this->Prob ^ ((-(int)(Int32)symbol)) & (kBitModelTotal - 1)) >> kNumMoveReducin… in GetPrice()
74 UInt32 GetPrice0() const { return ProbPrices[this->Prob >> kNumMoveReducingBits]; } in GetPrice0()
75 …UInt32 GetPrice1() const { return ProbPrices[(this->Prob ^ (kBitModelTotal - 1)) >> kNumMoveReduci… in GetPrice1()
85 UInt32 newBound = (decoder->Range >> kNumBitModelTotalBits) * this->Prob; in Decode()
89 this->Prob += (kBitModelTotal - this->Prob) >> numMoveBits; in Decode()
101 this->Prob -= (this->Prob) >> numMoveBits; in Decode()