Visible to Intel only — GUID: GUID-EBB8FDB4-745C-4D74-BE4F-C452A55D7B32
Visible to Intel only — GUID: GUID-EBB8FDB4-745C-4D74-BE4F-C452A55D7B32
_mm256_srli_si256
Logical shift of byte elements to right according to specified number. The corresponding Intel® AVX2 instruction is VPSRLDQ.
Syntax
extern __m256i _mm256_srli_si256(__m256i s1, const int count); |
Arguments
s1 |
integer source vector used for the operation |
count |
8-bit immediate used for the operation |
Description
Performs a logical shift of 8-bit [byte] elements within a 128-bit lane of source vector s1 to the right by the number of bytes specified in count. The empty low-order bytes are cleared (set to all '0'). If the value specified by count is greater than 15, the destination vector is set to all '0'. The count argument is an 8-bit immediate.
Returns
Result of the right-shift operation.