Lines Matching refs:getComplexIntReal
764 APSInt &getComplexIntReal() { return IntReal; }
781 IntReal = v.getComplexIntReal();
1300 Result = Val.getComplexIntReal().getBoolValue() ||
2058 : O->getComplexIntReal(), ObjType);
2684 return found(Subobj.getComplexIntReal(),
6435 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
6440 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
7032 return Success(C.getComplexIntReal(), E);
7057 return Success(LV.getComplexIntReal(), E);
7537 Result.getComplexIntReal() += RHS.getComplexIntReal();
7548 Result.getComplexIntReal() -= RHS.getComplexIntReal();
7575 Result.getComplexIntReal() =
7576 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
7579 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
7580 LHS.getComplexIntImag() * RHS.getComplexIntReal());
7613 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
7617 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
7619 Result.getComplexIntReal() =
7620 (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
7623 (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
7624 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
7651 Result.getComplexIntReal() = -Result.getComplexIntReal();