Home
last modified time | relevance | path

Searched refs:getComplexIntReal (Results 1 – 9 of 9) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp337 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); in APValue()
454 getComplexIntReal().needsCleanup() && in needsCleanup()
457 return getComplexIntReal().needsCleanup(); in needsCleanup()
589 profileIntValue(ID, getComplexIntReal()); in Profile()
673 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1543 IntReal = v.getComplexIntReal(); in setFrom()
4460 return found(Subobj.getComplexIntReal(), in found()
12606 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
14106 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
14122 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
14199 Result.getComplexIntReal() = in VisitBinaryOperator()
14200 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14267 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14269 Result.getComplexIntReal() = in VisitBinaryOperator()
14270 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
[all …]
H A DItaniumMangle.cpp5469 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
5657 if (V.getComplexIntReal().getBoolValue() || in mangleValueInTemplateArg()
5659 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntReal()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp523 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1807 mangleNumber(V.getComplexIntReal()); in mangleTemplateArgValue()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DAPValue.h445 APSInt &getComplexIntReal() {
449 const APSInt &getComplexIntReal() const {
450 return const_cast<APValue*>(this)->getComplexIntReal();
H A DPropertiesBase.td294 let Read = [{ node.getComplexIntReal() }];
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2052 Value.getComplexIntReal()); in tryEmitPrivate()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp11115 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); in GetValueRange()