Home | History | Annotate | Download | only in Sema

Lines Matching refs:OldValue

4144       llvm::APSInt OldValue = Value;
4155 && (OldValue.isSigned() && OldValue.isNegative())) {
4157 << OldValue.toString(10) << Value.toString(10) << Param->getType()
4165 RequiredBits = OldValue.getActiveBits();
4166 else if (OldValue.isUnsigned())
4167 RequiredBits = OldValue.getActiveBits() + 1;
4169 RequiredBits = OldValue.getMinSignedBits();
4173 << OldValue.toString(10) << Value.toString(10) << Param->getType()