Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DAPValue.h461 APSInt &getComplexIntImag() {
465 const APSInt &getComplexIntImag() const {
466 return const_cast<APValue*>(this)->getComplexIntImag();
H A DPropertiesBase.td301 let Read = [{ node.getComplexIntImag() }];
/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DAPValue.cpp337 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); in APValue()
455 assert(getComplexIntImag().needsCleanup() == in needsCleanup()
592 profileIntValue(ID, getComplexIntImag()); in Profile()
738 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1597 IntImag = v.getComplexIntImag(); in setFrom()
13242 LHS.getComplexIntImag() == RHS.getComplexIntImag(); in EvaluateComparisonBinaryOperator()
14896 Result.getComplexIntImag() += RHS.getComplexIntImag(); in VisitBinaryOperator()
14912 Result.getComplexIntImag() -= RHS.getComplexIntImag(); in VisitBinaryOperator()
14990 LHS.getComplexIntImag() * RHS.getComplexIntImag()); in VisitBinaryOperator()
14991 Result.getComplexIntImag() = in VisitBinaryOperator()
15057 RHS.getComplexIntImag() * RHS.getComplexIntImag(); in VisitBinaryOperator()
15060 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
15061 Result.getComplexIntImag() = in VisitBinaryOperator()
15091 Result.getComplexIntImag() = -Result.getComplexIntImag(); in VisitUnaryOperator()
[all …]
H A DItaniumMangle.cpp6214 return !V.getComplexIntReal() && !V.getComplexIntImag(); in isZeroInitialized()
6446 V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
6448 if (V.getComplexIntImag().getBoolValue()) in mangleValueInTemplateArg()
6449 mangleIntegerLiteral(CT->getElementType(), V.getComplexIntImag()); in mangleValueInTemplateArg()
H A DTextNodeDumper.cpp553 OS << Value.getComplexIntReal() << " + " << Value.getComplexIntImag() in Visit()
H A DMicrosoftMangle.cpp1961 mangleNumber(V.getComplexIntImag()); in mangleTemplateArgValue()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprConstant.cpp2106 Value.getComplexIntImag()); in tryEmitPrivate()
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplate.cpp8162 S, ElemT, Val.getComplexIntImag(), Loc)}); in BuildExpressionFromNonTypeTemplateArgumentValue()
H A DSemaDeclCXX.cpp17228 V.getComplexIntImag().toString(Str); in ConvertAPValueToString()
H A DSemaChecking.cpp14219 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()