Udostępnij za pośrednictwem


__umulh

Specyficzne dla firmy Microsoft

Zwróć wysokie 64 bity produktu dwóch 64-bitowych liczb całkowitych bez znaku.

Składnia

unsigned __int64 __umulh(
   unsigned __int64 a,
   unsigned __int64 b
);

Parametry

a
[in] Pierwsza liczba do pomnożenia.

b
[in] Druga liczba do pomnożenia.

Wartość zwracana

Wysoki 64 bity 128-bitowego wyniku mnożenia.

Wymagania

Nieodłączny Architektura
__umulh x64, ARM64

Plik<nagłówka intrin.h>

Uwagi

Te procedury są dostępne tylko jako funkcje wewnętrzne.

Przykład

// 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

END Microsoft Specific

Zobacz też

Funkcje wewnętrzne kompilatora