Lines Matching defs:getComplexIntReal
1526 APSInt &getComplexIntReal() { return IntReal; }
1543 IntReal = v.getComplexIntReal();
2482 Result = Val.getComplexIntReal().getBoolValue() ||
3738 : O->getComplexIntReal(), ObjType);
4457 return found(Subobj.getComplexIntReal(),
12571 bool IsEqual = LHS.getComplexIntReal() == RHS.getComplexIntReal() &&
13296 return Success(C.getComplexIntReal(), E);
13321 return Success(LV.getComplexIntReal(), E);
14068 Result.getComplexIntReal() += RHS.getComplexIntReal();
14084 Result.getComplexIntReal() -= RHS.getComplexIntReal();
14161 Result.getComplexIntReal() =
14162 (LHS.getComplexIntReal() * RHS.getComplexIntReal() -
14165 (LHS.getComplexIntReal() * RHS.getComplexIntImag() +
14166 LHS.getComplexIntImag() * RHS.getComplexIntReal());
14225 if (RHS.getComplexIntReal() == 0 && RHS.getComplexIntImag() == 0)
14229 APSInt Den = RHS.getComplexIntReal() * RHS.getComplexIntReal() +
14231 Result.getComplexIntReal() =
14232 (LHS.getComplexIntReal() * RHS.getComplexIntReal() +
14235 (LHS.getComplexIntImag() * RHS.getComplexIntReal() -
14236 LHS.getComplexIntReal() * RHS.getComplexIntImag()) / Den;
14263 Result.getComplexIntReal() = -Result.getComplexIntReal();