Home | History | Annotate | Download | only in Sema

Lines Matching full:issigned

2870         IsConstant && Result.isSigned() && (Subtract != Result.isNegative());
2872 IsConstant && Result.isSigned() && (Subtract == Result.isNegative());
3254 bool IsSigned = UseVarType ? VarType->hasSignedIntegerRepresentation()
3256 Type = C.getIntTypeForBitwidth(NewSize, IsSigned);
5727 Result.isSigned() &&
6090 if (Result.isSigned() && !Result.isStrictlyPositive()) {
7344 bool IsSigned = Type->hasSignedIntegerRepresentation();
7347 Context.getIntTypeForBitwidth(Size, /*Signed=*/IsSigned);
7350 ? IsSigned ? llvm::APInt::getSignedMinValue(Size)
7352 : IsSigned ? llvm::APInt::getSignedMaxValue(Size)