Table of Contents

Method BigMul_Two

Namespace
Zyl.VectorTraits
Assembly
VectorTraits.dll

BigMul_Two(long, long, out long)

Produces the full product of two signed 64-bit numbers - Two word (生成两个有符号 64 位数的完整乘积 - 双字).

[Obsolete("This method is for testing purposes only. Please use BigMul instead.")]
public static long BigMul_Two(long a, long b, out long low)

Parameters

a long

The first number to multiply (要相乘的第一个数).

b long
low long

When this method returns, contains the low 64-bit of the product of the specified numbers (此方法返回时,包含指定数字乘积的低 64 位).

Returns

long

The high 64-bit of the product of the specified numbers (指定数字乘积的高 64 位).

See Also

BigMul_Two(ulong, ulong, out ulong)

Produces the full product of two unsigned 64-bit numbers - Two word (生成两个无符号 64 位数的完整乘积 - 双字).

[Obsolete("This method is for testing purposes only. Please use BigMul instead.")]
[CLSCompliant(false)]
public static ulong BigMul_Two(ulong u, ulong v, out ulong low)

Parameters

u ulong

The first number to multiply (要相乘的第一个数).

v ulong

The second number to multiply (要相乘的第二个数).

low ulong

When this method returns, contains the low 64-bit of the product of the specified numbers (此方法返回时,包含指定数字乘积的低 64 位).

Returns

ulong

The high 64-bit of the product of the specified numbers (指定数字乘积的高 64 位).

See Also