__mulh
Microsoft 전용
높은 64 비트 제품의 두 개의 64 비트 부호 있는 정수를 반환합니다.
__int64 __mulh(
__int64 a,
__int64 b
);
매개 변수
[in] a
곱할 첫 번째 숫자입니다.[in] b
곱할 두 번째 숫자입니다.
반환 값
곱셈 결과로 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);
}