Lines Matching defs:multiply
1933 """Fused multiply-add.
4480 The first two operands are multiplied together, using multiply,
4957 def multiply(self, a, b):
4958 """multiply multiplies two operands.
4965 >>> ExtendedContext.multiply(Decimal('1.20'), Decimal('3'))
4967 >>> ExtendedContext.multiply(Decimal('7'), Decimal('3'))
4969 >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('0.8'))
4971 >>> ExtendedContext.multiply(Decimal('0.9'), Decimal('-0'))
4973 >>> ExtendedContext.multiply(Decimal('654321'), Decimal('654321'))
4975 >>> ExtendedContext.multiply(7, 7)
4977 >>> ExtendedContext.multiply(Decimal(7), 7)
4979 >>> ExtendedContext.multiply(7, Decimal(7))