Lines Matching +full:625 +full:v
535 If the value is zero, V->firstSigDigit points to a non-digit, and
762 …static const APFloatBase::integerPart firstEightPowers[] = { 1, 5, 25, 125, 625, 3125, 15625, 7812… in powerOf5()
2241 IEEEFloat V = scalbn(rhs, Exp, rmNearestTiesToEven); in mod() local
2242 // V can overflow to NaN with fltNonfiniteBehavior::NanOnly, so explicitly in mod()
2244 if (V.isNaN() || compareAbsoluteValue(V) == cmpLessThan) in mod()
2245 V = scalbn(rhs, Exp - 1, rmNearestTiesToEven); in mod()
2246 V.sign = sign; in mod()
2248 fs = subtract(V, rmNearestTiesToEven); in mod()
3514 IEEEFloat v(extended); in convertPPCDoubleDoubleAPFloatToAPInt() local
3515 v.subtract(u, rmNearestTiesToEven); in convertPPCDoubleDoubleAPFloatToAPInt()
3516 fs = v.convert(semIEEEdouble, rmNearestTiesToEven, &losesInfo); in convertPPCDoubleDoubleAPFloatToAPInt()
3519 words[1] = *v.convertDoubleAPFloatToAPInt().getRawData(); in convertPPCDoubleDoubleAPFloatToAPInt()
3799 IEEEFloat v(semIEEEdouble, APInt(64, i2)); in initFromPPCDoubleDoubleAPInt() local
3800 fs = v.convert(semPPCDoubleDoubleLegacy, rmNearestTiesToEven, &losesInfo); in initFromPPCDoubleDoubleAPInt()
3804 add(v, rmNearestTiesToEven); in initFromPPCDoubleDoubleAPInt()
4945 // v = a * d in multiply()
4946 APFloat V = A; in multiply() local
4947 Status |= V.multiply(D, RM); in multiply()
4951 Status |= V.add(W, RM); in multiply()
4952 // tau += v + w in multiply()
4953 Status |= Tau.add(V, RM); in multiply()