Home | History | Annotate | Download | only in AST

Lines Matching refs:getComplexIntReal

671     APSInt &getComplexIntReal() { return IntReal; }
688 IntReal = v.getComplexIntReal();
1130 Result = Val.getComplexIntReal().getBoolValue() ||
1573 : O->getComplexIntReal());
4887 return Success((LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
4892 return Success((LHS.getComplexIntReal() != RHS.getComplexIntReal() ||
5476 return Success(C.getComplexIntReal(), E);
5501 return Success(LV.getComplexIntReal(), E);
5995 Result.getComplexIntReal() += RHS.getComplexIntReal();
6006 Result.getComplexIntReal() -= RHS.getComplexIntReal();
6033 Result.getComplexIntReal() =
6034 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
6037 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
6038 LHS.getComplexIntImag() * RHS.getComplexIntReal());
6071 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
6075 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
6077 Result.getComplexIntReal() =
6078 (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
6081 (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
6082 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
6109 Result.getComplexIntReal() = -Result.getComplexIntReal();