Function core::arch::arm::__smusdx [−][src]
pub unsafe fn __smusdx(a: int16x2_t, b: int16x2_t) -> i32This is supported on (non-crate feature
miri-test-libstd or test or doctest) and ARM only.Expand description
Signed Dual Multiply Subtract Reversed.
Returns the equivalent of
res = a[0] * b[1] - a[1] * b[0]
and sets the Q flag if overflow occurs on the addition.