Lines Matching refs:ResultVal

3819         llvm::APInt ResultVal(Context.getTargetInfo().getLongLongWidth(), 0);  in ActOnNumericConstant()  local
3820 if (Literal.GetIntegerValue(ResultVal)) in ActOnNumericConstant()
3823 Lit = IntegerLiteral::Create(Context, ResultVal, CookedTy, in ActOnNumericConstant()
3990 llvm::APInt ResultVal(BitsNeeded, 0); in ActOnNumericConstant() local
3992 if (Literal.GetIntegerValue(ResultVal)) { in ActOnNumericConstant()
3997 assert(Context.getTypeSize(Ty) == ResultVal.getBitWidth() && in ActOnNumericConstant()
4027 Width = std::max(ResultVal.getActiveBits(), 1u) + in ActOnNumericConstant()
4044 ResultVal = ResultVal.zextOrTrunc(Width); in ActOnNumericConstant()
4056 if (ResultVal.isIntN(SizeTSize)) { in ActOnNumericConstant()
4058 if (!Literal.isUnsigned && ResultVal[SizeTSize - 1] == 0) in ActOnNumericConstant()
4072 if (ResultVal.isIntN(IntSize)) { in ActOnNumericConstant()
4074 if (!Literal.isUnsigned && ResultVal[IntSize-1] == 0) in ActOnNumericConstant()
4087 if (ResultVal.isIntN(LongSize)) { in ActOnNumericConstant()
4089 if (!Literal.isUnsigned && ResultVal[LongSize-1] == 0) in ActOnNumericConstant()
4118 if (ResultVal.isIntN(LongLongSize)) { in ActOnNumericConstant()
4122 if (!Literal.isUnsigned && (ResultVal[LongLongSize-1] == 0 || in ActOnNumericConstant()
4145 if (ResultVal.getBitWidth() != Width) in ActOnNumericConstant()
4146 ResultVal = ResultVal.trunc(Width); in ActOnNumericConstant()
4148 Res = IntegerLiteral::Create(Context, ResultVal, Ty, Tok.getLocation()); in ActOnNumericConstant()