Searched refs:IntResult (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp394 llvm::APSInt IntResult; local
395 if (EVResult.Val.toIntegralConstant(IntResult, InputExpr->getType(),
397 if (!Info.isValidAsmImmediate(IntResult))
400 << IntResult.toString(10)
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmt.cpp1866 llvm::APSInt IntResult; local
1867 if (EVResult.Val.toIntegralConstant(IntResult, InputExpr->getType(),
1869 return llvm::ConstantInt::get(getLLVMContext(), IntResult);
H A DCGExprScalar.cpp1283 llvm::Value* IntResult = local
1286 return Builder.CreateIntToPtr(IntResult, DstTy, "conv");
2181 llvm::Value* IntResult = local
2184 auto *IntToPtr = Builder.CreateIntToPtr(IntResult, DestLLVMTy);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp9413 APSInt IntResult;
9414 if (!EvaluateInteger(SE, IntResult, Info))
9416 Val = APValue(std::move(IntResult));
12418 uint64_t IntResult = BoolResult;
12420 IntResult = (uint64_t)-1;
12421 return Success(IntResult, E);
12611 APFixedPoint IntResult = APFixedPoint::getFromIntValue(
12614 if (Overflowed && !HandleOverflow(Info, E, IntResult, DestType))
12617 return Success(IntResult, E);
12868 APSInt IntResult;
[all...]

Completed in 209 milliseconds