__umulh
Microsoft 专用
返回两个 64 位无符号整数的产品的高 64 位。
语法
unsigned __int64 __umulh(
unsigned __int64 a,
unsigned __int64 b
);
参数
a
[输入] 要相乘的第一个数字。
b
[输入] 要相乘的第二个数字。
返回值
128 位乘法运算结果的高 64 位。
要求
Intrinsic | 体系结构 |
---|---|
__umulh |
x64、ARM64 |
头文件<intrin.h>
备注
这些例程只能用作内部函数。
示例
// umulh.cpp
// processor: X64
#include <cstdio>
#include <intrin.h>
int main()
{
unsigned __int64 i = 0x10;
unsigned __int64 j = 0xFEDCBA9876543210;
unsigned __int64 k = i * j; // k has the low 64 bits
// of the product.
unsigned __int64 result;
result = __umulh(i, j); // result has the high 64 bits
// of the product.
printf_s("0x%016I64x * 0x%016I64x = 0x%016I64x_%016I64x \n", i, j, result, k);
return 0;
}
0x0000000000000010 * 0xfedcba9876543210 = 0x000000000000000f_edcba98765432100
结束 Microsoft 专用