Moves unaligned integer from memory. The corresponding Intel® AVX instruction is VLDDQU.
extern __m256i _mm256_lddqu_si256(__m256i const *a); |
*a |
points to a memory location from where unaligned integer value must be moved |
Fetches 32 bytes of data, starting at a memory address specified by the a parameter, and places them in a destination. This intrinsic calls the corresponding instruction VLDDQU, which performs an operation functionally similar to the VMOVDQU instruction.
Result of the move operation.
Copyright © 1996-2011, Intel Corporation. All rights reserved.