Home | History | Annotate | Download | only in RangeCoder

Lines Matching refs:Prob

104 		int prob = probs[index];

105 int newBound = (Range >>> kNumBitModelTotalBits) * prob;
109 probs[index] = (short)(prob + ((kBitModelTotal - prob) >>> kNumMoveBits));
115 probs[index] = (short)(prob - ((prob) >>> kNumMoveBits));
139 static public int GetPrice(int Prob, int symbol)
141 return ProbPrices[(((Prob - symbol) ^ ((-symbol))) & (kBitModelTotal - 1)) >>> kNumMoveReducingBits];
143 static public int GetPrice0(int Prob)
145 return ProbPrices[Prob >>> kNumMoveReducingBits];
147 static public int GetPrice1(int Prob)
149 return ProbPrices[(kBitModelTotal - Prob) >>> kNumMoveReducingBits];