Function core::arch::x86_64::_mulx_u64

1.27.0 · source ·
pub unsafe fn _mulx_u64(a: u64, b: u64, hi: &mut u64) -> u64
Available on x86-64 and target feature bmi2 only.
Expand description

无符号乘法,且不影响标志。

ab 的无符号乘法返回一对 (lo, hi),其结果的下半部分和上半部分。

Intel’s documentation