Home | History | Annotate | Download | only in Sema

Lines Matching defs:OldValue

5132       llvm::APSInt OldValue = Value;
5143 && (OldValue.isSigned() && OldValue.isNegative())) {
5145 << OldValue.toString(10) << Value.toString(10) << Param->getType()
5153 RequiredBits = OldValue.getActiveBits();
5154 else if (OldValue.isUnsigned())
5155 RequiredBits = OldValue.getActiveBits() + 1;
5157 RequiredBits = OldValue.getMinSignedBits();
5161 << OldValue.toString(10) << Value.toString(10) << Param->getType()