Lines Matching defs:fma
1932 def fma(self, other, third, context=None):
1962 'INF * 0 in fma')
1967 '0 * INF in fma')
1990 # (i.e. behaviour for NaNs is identical to that of fma)
4477 def fma(self, a, b, c):
4484 >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7'))
4486 >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7'))
4488 >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578'))
4490 >>> ExtendedContext.fma(1, 3, 4)
4492 >>> ExtendedContext.fma(1, Decimal(3), 4)
4494 >>> ExtendedContext.fma(1, 3, Decimal(4))
4498 return a.fma(b, c, context=self)