Lines Matching defs:That
266 void FAddendCoef::operator=(const FAddendCoef &That) {
267 if (That.isInt())
268 set(That.IntVal);
270 set(That.getFpVal());
273 void FAddendCoef::operator+=(const FAddendCoef &That) {
275 if (isInt() == That.isInt()) {
277 IntVal += That.IntVal;
279 getFpVal().add(That.getFpVal(), RndMode);
284 const APFloat &T = That.getFpVal();
291 T.add(createAPFloatFromInt(T.getSemantics(), That.IntVal), RndMode);
294 void FAddendCoef::operator*=(const FAddendCoef &That) {
295 if (That.isOne())
298 if (That.isMinusOne()) {
303 if (isInt() && That.isInt()) {
304 int Res = IntVal * (int)That.IntVal;
311 isInt() ? That.getFpVal().getSemantics() : getFpVal().getSemantics();
317 if (That.isInt())
318 F0.multiply(createAPFloatFromInt(Semantic, That.IntVal),
321 F0.multiply(That.getFpVal(), APFloat::rmNearestTiesToEven);