Share via


_mm_andnot_ps

Microsoft Specific

Computes the bitwise AND-NOT of the four single-precision, floating-point values of a and b.

__m128 _mm_andnot_ps(__m128 a , __m128 b );
ANDNPS

Return Value

r0 := ~a0 & b0
r1 := ~a1 & b1
r2 := ~a2 & b2
r3 := ~a3 & b3

Requirements

Header: mmintrin.h

END Microsoft Specific

See Also

Reference

Logical Operations (SSE)