Function core::arch::x86::_mm256_testnzc_si2561.27.0[][src]

pub unsafe fn _mm256_testnzc_si256(a: __m256i, b: __m256i) -> i32
This is supported on x86 and target feature avx only.
Expand description

计算 ab 中 256 位 (表示整数数据) 的按位与,如果结果为零,则将 ZF 设置为 1,否则将 ZF 设置为 0。

计算 a 的按位 NOT,然后计算 b 的 AND,如果结果为零,则将 CF 设置为 1,否则将 CF 设置为 0。 如果 ZFCF 的值均为零,则返回 1,否则返回 0。

Intel’s documentation