Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
736 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1539 IntReal = v.getComplexIntReal(); in setFrom()
4508 return found(Subobj.getComplexIntReal(), in found()
12834 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
14338 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
14354 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
14431 Result.getComplexIntReal() = in VisitBinaryOperator()
14432 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
14499 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
14501 Result.getComplexIntReal() = in VisitBinaryOperator()
14502 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
[all …]
H A DItaniumMangle.cpp5549 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
5780 if (V.getComplexIntReal().getBoolValue() || in mangleValueInTemplateArg()
5782 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntReal()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp525 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1838 mangleNumber(V.getComplexIntReal()); in mangleTemplateArgValue()
/llvm-project-15.0.7/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.td297 let Read = [{ node.getComplexIntReal() }];
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGExprConstant.cpp2089 Value.getComplexIntReal()); in tryEmitPrivate()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaChecking.cpp12154 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); in GetValueRange()