Home | History | Annotate | Download | only in Sema

Lines Matching refs:OldValue

4265       llvm::APSInt OldValue = Value;
4276 && (OldValue.isSigned() && OldValue.isNegative())) {
4278 << OldValue.toString(10) << Value.toString(10) << Param->getType()
4286 RequiredBits = OldValue.getActiveBits();
4287 else if (OldValue.isUnsigned())
4288 RequiredBits = OldValue.getActiveBits() + 1;
4290 RequiredBits = OldValue.getMinSignedBits();
4294 << OldValue.toString(10) << Value.toString(10) << Param->getType()