The prototypes for Intel® Streaming SIMD Extensions (Intel® SSE) intrinsics for logical operations are in the xmmintrin.h header file.
The results of each intrinsic operation are placed in a register. This register is illustrated for each intrinsic with R0-R3. R0, R1, R2 and R3 each represent one of the four 32-bit pieces of the result register.
__m128 _mm_and_ps(__m128 a, __m128 b)
Computes the bitwise AND of the four SP FP values of a and b.
__m128 _mm_andnot_ps(__m128 a, __m128 b)
Computes the bitwise AND-NOT of the four SP FP values of a and b.
Copyright © 1996-2010, Intel Corporation. All rights reserved.