Lines Matching refs:ResultVal
3312 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); in ActOnNumericConstant() local
3313 if (Literal.GetIntegerValue(ResultVal)) in ActOnNumericConstant()
3316 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, in ActOnNumericConstant()
3408 llvm::APInt ResultVal(MaxWidth, 0); in ActOnNumericConstant() local
3410 if (Literal.GetIntegerValue(ResultVal)) { in ActOnNumericConstant()
3415 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && in ActOnNumericConstant()
3445 if (ResultVal.isIntN(IntSize)) { in ActOnNumericConstant()
3447 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) in ActOnNumericConstant()
3460 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
3462 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
3491 if (ResultVal.isIntN(LongLongSize)) { in ActOnNumericConstant()
3495 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || in ActOnNumericConstant()
3512 if (ResultVal.getBitWidth() != Width) in ActOnNumericConstant()
3513 ResultVal = ResultVal.trunc(Width); in ActOnNumericConstant()
3515 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); in ActOnNumericConstant()