Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Microsoft Specific
Conditionally stores byte elements of d to address p.
void _mm_maskmove_si64(__m64 d , __m64 n , char * p);
MASKMOVQ
Return Value
The high bit of each byte in the selector n determines whether the corresponding byte in d will be stored.
if (sign(n0)) p[0] := d0
if (sign(n1)) p[1] := d1
...
if (sign(n7)) p[7] := d7
Requirements
Header: mmintrin.h
END Microsoft Specific