Home | History | Annotate | Download | only in AST

Lines Matching defs:getComplexIntReal

893     APSInt &getComplexIntReal() { return IntReal; }
910 IntReal = v.getComplexIntReal();
1445 Result = Val.getComplexIntReal().getBoolValue() ||
2202 : O->getComplexIntReal(), ObjType);
2831 return found(Subobj.getComplexIntReal(),
6635 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
6640 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
7243 return Success(C.getComplexIntReal(), E);
7268 return Success(LV.getComplexIntReal(), E);
7749 Result.getComplexIntReal() += RHS.getComplexIntReal();
7760 Result.getComplexIntReal() -= RHS.getComplexIntReal();
7787 Result.getComplexIntReal() =
7788 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
7791 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
7792 LHS.getComplexIntImag() * RHS.getComplexIntReal());
7825 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
7829 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
7831 Result.getComplexIntReal() =
7832 (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
7835 (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
7836 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
7863 Result.getComplexIntReal() = -Result.getComplexIntReal();