Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DAPValue.cpp186 setComplexInt(RHS.getComplexIntReal(), RHS.getComplexIntImag()); in APValue()
279 getComplexIntReal().needsCleanup() && in needsCleanup()
282 return getComplexIntReal().needsCleanup(); in needsCleanup()
333 OS << "ComplexInt: " << getComplexIntReal() << ", " << getComplexIntImag(); in dump()
412 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1336 IntReal = v.getComplexIntReal(); in setFrom()
3560 return found(Subobj.getComplexIntReal(), in found()
9162 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() && in EvaluateComparisonBinaryOperator()
10421 Result.getComplexIntReal() += RHS.getComplexIntReal(); in VisitBinaryOperator()
10437 Result.getComplexIntReal() -= RHS.getComplexIntReal(); in VisitBinaryOperator()
10514 Result.getComplexIntReal() = in VisitBinaryOperator()
10515 (LHS.getComplexIntReal() * RHS.getComplexIntReal() - in VisitBinaryOperator()
10582 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
10584 Result.getComplexIntReal() = in VisitBinaryOperator()
10585 (LHS.getComplexIntReal() * RHS.getComplexIntReal() + in VisitBinaryOperator()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DAPValue.h274 APSInt &getComplexIntReal() { in getComplexIntReal() function
278 const APSInt &getComplexIntReal() const { in getComplexIntReal() function
279 return const_cast<APValue*>(this)->getComplexIntReal(); in getComplexIntReal()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprConstant.cpp1880 Value.getComplexIntReal()); in tryEmitPrivate()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp9645 IntRange R = GetValueRange(C, result.getComplexIntReal(), MaxWidth); in GetValueRange()