Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp337 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); in APValue()
456 getComplexIntReal().needsCleanup() && in needsCleanup()
459 return getComplexIntReal().needsCleanup(); in needsCleanup()
591 profileIntValue(ID, getComplexIntReal()); in Profile()
738 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1596 IntReal = v.getComplexIntReal(); in setFrom()
4578 return found(Subobj.getComplexIntReal(), in found()
13241 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
14895 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
14911 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
14988 Result.getComplexIntReal() = in VisitBinaryOperator()
14989 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
15056 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
15058 Result.getComplexIntReal() = in VisitBinaryOperator()
15059 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
[all …]
H A DItaniumMangle.cpp6214 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
6445 if (V.getComplexIntReal().getBoolValue() || in mangleValueInTemplateArg()
6447 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntReal()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp553 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1959 mangleNumber(V.getComplexIntReal()); in mangleTemplateArgValue()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DAPValue.h453 APSInt &getComplexIntReal() {
457 const APSInt &getComplexIntReal() const {
458 return const_cast<APValue*>(this)->getComplexIntReal();
H A DPropertiesBase.td298 let Read = [{ node.getComplexIntReal() }];
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2104 Value.getComplexIntReal()); in tryEmitPrivate()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplate.cpp8160 S, ElemT, Val.getComplexIntReal(), Loc), in BuildExpressionFromNonTypeTemplateArgumentValue()
H A DSemaDeclCXX.cpp17226 V.getComplexIntReal().toString(Str); in ConvertAPValueToString()
H A DSemaChecking.cpp14218 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); in GetValueRange()