__mulh
Microsoft 特定的
傳回兩個64位帶正負號整數之乘積的高64位。
語法
__int64 __mulh(
__int64 a,
__int64 b
);
參數
a
[in] 要相乘的第一個數字。
b
[in] 要相乘的第二個數字。
傳回值
相乘的 128 位元結果的 64 高位元。
需求
內建 | 架構 |
---|---|
__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
END Microsoft 特定的