Lines Matching refs:ResultVal
3245 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); in ActOnNumericConstant() local
3246 if (Literal.GetIntegerValue(ResultVal)) in ActOnNumericConstant()
3249 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, in ActOnNumericConstant()
3332 llvm::APInt ResultVal(MaxWidth, 0); in ActOnNumericConstant() local
3334 if (Literal.GetIntegerValue(ResultVal)) { in ActOnNumericConstant()
3339 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && in ActOnNumericConstant()
3369 if (ResultVal.isIntN(IntSize)) { in ActOnNumericConstant()
3371 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) in ActOnNumericConstant()
3384 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
3386 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
3415 if (ResultVal.isIntN(LongLongSize)) { in ActOnNumericConstant()
3419 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || in ActOnNumericConstant()
3436 if (ResultVal.getBitWidth() != Width) in ActOnNumericConstant()
3437 ResultVal = ResultVal.trunc(Width); in ActOnNumericConstant()
3439 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); in ActOnNumericConstant()