Function core::arch::x86_64::_mm_test_all_zeros 1.27.0[−][src]
pub unsafe fn _mm_test_all_zeros(a: __m128i, mask: __m128i) -> i32
This is supported on x86-64 and target feature
sse4.1
only.Expand description
测试 128 位整数 vector 中的指定位是否全部为零。
Arguments:
a
- 包含要测试的位的 128 位整数 vector。mask
- 一个 128 位整数 vector,用于选择要在操作数a
中测试的位。
Returns:
1
- 如果指定的位全为零,0
- otherwise.