Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DAPValue.h453 APSInt &getComplexIntImag() {
457 const APSInt &getComplexIntImag() const {
458 return const_cast<APValue*>(this)->getComplexIntImag();
H A DPropertiesBase.td297 let Read = [{ node.getComplexIntImag() }];
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp337 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); in APValue()
453 assert(getComplexIntImag().needsCleanup() == in needsCleanup()
590 profileIntValue(ID, getComplexIntImag()); in Profile()
673 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1544 IntImag = v.getComplexIntImag(); in setFrom()
12607 LHS.getComplexIntImag() == RHS.getComplexIntImag(); in EvaluateComparisonBinaryOperator()
14107 Result.getComplexIntImag() += RHS.getComplexIntImag(); in VisitBinaryOperator()
14123 Result.getComplexIntImag() -= RHS.getComplexIntImag(); in VisitBinaryOperator()
14201 LHS.getComplexIntImag() * RHS.getComplexIntImag()); in VisitBinaryOperator()
14202 Result.getComplexIntImag() = in VisitBinaryOperator()
14268 RHS.getComplexIntImag() * RHS.getComplexIntImag(); in VisitBinaryOperator()
14271 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
14272 Result.getComplexIntImag() = in VisitBinaryOperator()
14302 Result.getComplexIntImag() = -Result.getComplexIntImag(); in VisitUnaryOperator()
[all …]
H A DItaniumMangle.cpp5469 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
5658 V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5660 if (V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
5661 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntImag()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp523 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1809 mangleNumber(V.getComplexIntImag()); in mangleTemplateArgValue()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2054 Value.getComplexIntImag()); in tryEmitPrivate()
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp11116 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()