_mm_testz_si128

Compute the bitwise AND of 128 bits (representing integer data) in a and b, and return 1 if the result is zero, otherwise return 0. In other words, test if all bits masked by b are 0 in a.

nothrow @nogc @trusted
int
_mm_testz_si128
(
__m128i a
,
__m128i b
)

Meta