Lines Matching refs:ResultVal
3032 llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0); in ActOnNumericConstant() local
3033 if (Literal.GetIntegerValue(ResultVal)) in ActOnNumericConstant()
3035 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, in ActOnNumericConstant()
3123 llvm::APInt ResultVal(MaxWidth, 0); in ActOnNumericConstant() local
3125 if (Literal.GetIntegerValue(ResultVal)) { in ActOnNumericConstant()
3129 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && in ActOnNumericConstant()
3146 if (ResultVal.isIntN(IntSize)) { in ActOnNumericConstant()
3148 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) in ActOnNumericConstant()
3161 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
3163 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
3176 if (ResultVal.isIntN(LongLongSize)) { in ActOnNumericConstant()
3180 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || in ActOnNumericConstant()
3208 if (ResultVal.getBitWidth() != Width) in ActOnNumericConstant()
3209 ResultVal = ResultVal.trunc(Width); in ActOnNumericConstant()
3211 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); in ActOnNumericConstant()