Home | History | Annotate | Download | only in python2.7

Lines Matching defs:fma

1809     def fma(self, other, third, context=None):
1838 'INF * 0 in fma')
1843 '0 * INF in fma')
1866 # (i.e. behaviour for NaNs is identical to that of fma)
4289 def fma(self, a, b, c):
4296 >>> ExtendedContext.fma(Decimal('3'), Decimal('5'), Decimal('7'))
4298 >>> ExtendedContext.fma(Decimal('3'), Decimal('-5'), Decimal('7'))
4300 >>> ExtendedContext.fma(Decimal('888565290'), Decimal('1557.96930'), Decimal('-86087.7578'))
4302 >>> ExtendedContext.fma(1, 3, 4)
4304 >>> ExtendedContext.fma(1, Decimal(3), 4)
4306 >>> ExtendedContext.fma(1, 3, Decimal(4))
4310 return a.fma(b, c, context=self)