__mulh
Microsoft 专用
返回两个 64 位无符号整数的积的高 64 位。
语法
__int64 __mulh(
__int64 a,
__int64 b
);
参数
a
[输入] 要相乘的第一个数字。
b
[输入] 要相乘的第二个数字。
返回值
128 位乘法运算结果的高 64 位。
要求
Intrinsic | 体系结构 |
---|---|
__mulh |
x64 |
头文件<intrin.h>
注解
此例程仅可用作内部函数。
示例
// mulh.cpp
// processor: x64
#include <stdio.h>
#include <intrin.h>
#pragma intrinsic (__mulh)
int main()
{
__int64 a = 0x0fffffffffffffffI64;
__int64 b = 0xf0000000I64;
__int64 result = __mulh(a, b); // the high 64 bits
__int64 result2 = a * b; // the low 64 bits
printf_s(" %#I64x * %#I64x = %#I64x%I64x\n",
a, b, result, result2);
}
0xfffffffffffffff * 0xf0000000 = 0xeffffffffffffff10000000
结束 Microsoft 专用