Home
last modified time | relevance | path

Searched refs:getComplexIntImag (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()
278 assert(getComplexIntImag().needsCleanup() == in needsCleanup()
333 OS << "ComplexInt: " << getComplexIntReal() << ", " << getComplexIntImag(); in dump()
412 Out << getComplexIntReal() << "+" << getComplexIntImag() << "i"; in printPretty()
H A DExprConstant.cpp1337 IntImag = v.getComplexIntImag(); in setFrom()
9163 LHS.getComplexIntImag() == RHS.getComplexIntImag(); in EvaluateComparisonBinaryOperator()
10422 Result.getComplexIntImag() += RHS.getComplexIntImag(); in VisitBinaryOperator()
10438 Result.getComplexIntImag() -= RHS.getComplexIntImag(); in VisitBinaryOperator()
10516 LHS.getComplexIntImag() * RHS.getComplexIntImag()); in VisitBinaryOperator()
10517 Result.getComplexIntImag() = in VisitBinaryOperator()
10583 RHS.getComplexIntImag() * RHS.getComplexIntImag(); in VisitBinaryOperator()
10586 LHS.getComplexIntImag() * RHS.getComplexIntImag()) / Den; in VisitBinaryOperator()
10587 Result.getComplexIntImag() = in VisitBinaryOperator()
10617 Result.getComplexIntImag() = -Result.getComplexIntImag(); in VisitUnaryOperator()
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DAPValue.h282 APSInt &getComplexIntImag() { in getComplexIntImag() function
286 const APSInt &getComplexIntImag() const { in getComplexIntImag() function
287 return const_cast<APValue*>(this)->getComplexIntImag(); in getComplexIntImag()
/freebsd-12.1/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGExprConstant.cpp1882 Value.getComplexIntImag()); in tryEmitPrivate()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Sema/
H A DSemaChecking.cpp9646 IntRange I = GetValueRange(C, result.getComplexIntImag(), MaxWidth); in GetValueRange()