15 references to Multiply
System.Runtime.Numerics (15)
System\Number.BigInteger.cs (6)
478BigIntegerCalculator.Multiply(buffer2, multiplier, bitsUpper); 480BigIntegerCalculator.Multiply(multiplier, buffer2, bitsUpper); 1161BigIntegerCalculator.Multiply(src, power, dst); 1163BigIntegerCalculator.Multiply(power, src, dst); 1181BigIntegerCalculator.Multiply(powersOfTen, left, bits2); 1183BigIntegerCalculator.Multiply(left, powersOfTen, bits2);
System\Numerics\BigInteger.cs (2)
2751BigIntegerCalculator.Multiply(right, left, bits); 2764BigIntegerCalculator.Multiply(left, right, bits);
System\Numerics\BigIntegerCalculator.FastReducer.cs (2)
85Multiply(right, 91Multiply(left,
System\Numerics\BigIntegerCalculator.PowMod.cs (2)
78Multiply(left.Slice(0, leftLength), right, temp.Slice(0, resultLength)); 82Multiply(right, left.Slice(0, leftLength), temp.Slice(0, resultLength));
System\Numerics\BigIntegerCalculator.SquMul.cs (3)
221Multiply(leftLow, right, bitsLow); 237Multiply(leftHigh, right, bitsHigh.Slice(0, leftHigh.Length + right.Length)); 280Multiply(leftHigh, rightHigh, bitsHigh);