_mm_andnot_pd

Microsoft Specific

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

__m128d _mm_andnot_pd (__m128d a, __m128d b);
ANDNPD

Return Value

r0 := (~a0) & b0 
r1 := (~a1) & b1 

Requirements

Header: emmintrin.h

END Microsoft Specific

See Also

Reference

Logical Operations (Floating-Point SSE2 Intrinsics)