Function core::arch::x86_64::_mulx_u32

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

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

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

Intel’s documentation