Lines Matching refs:ResultVal
3728 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); in ActOnNumericConstant() local
3729 if (Literal.GetIntegerValue(ResultVal)) in ActOnNumericConstant()
3732 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, in ActOnNumericConstant()
3871 llvm::APInt ResultVal(MaxWidth, 0); in ActOnNumericConstant() local
3873 if (Literal.GetIntegerValue(ResultVal)) { in ActOnNumericConstant()
3878 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && in ActOnNumericConstant()
3908 if (ResultVal.isIntN(IntSize)) { in ActOnNumericConstant()
3910 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) in ActOnNumericConstant()
3923 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
3925 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
3954 if (ResultVal.isIntN(LongLongSize)) { in ActOnNumericConstant()
3958 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || in ActOnNumericConstant()
3975 if (ResultVal.getBitWidth() != Width) in ActOnNumericConstant()
3976 ResultVal = ResultVal.trunc(Width); in ActOnNumericConstant()
3978 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); in ActOnNumericConstant()