_mm_andnot_si128

Microsoft Specific

Computes the bitwise AND of the 128-bit value in b and the bitwise NOT of the 128-bit value in a.

__m128i _mm_andnot_si128 (__m128i a, __m128i b);
PANDN

Return Value

r := (~a) & b

Requirements

Header: emmintrin.h

END Microsoft Specific

See Also

Reference

Logical Operations (Integer SSE2 Intrinsics)