Visible to Intel only — GUID: GUID-2D453D99-94AC-4339-B11B-2CF54C967415
Visible to Intel only — GUID: GUID-2D453D99-94AC-4339-B11B-2CF54C967415
<span class='option'>_mm256_srli_epi16/32/64 </span>
Logical shift of word/doubleword/quadword elements to right according to specified number. The corresponding Intel® AVX2 instruction is VPSRLW, VPSRLD, or VPSRLQ.
extern __m256i _mm256_srli_epi16(__m256i s1, int count); |
extern __m256i _mm256_srli_epi32(__m256i s1, int count); |
extern __m256i _mm256_srli_epi64(__m256i s1, int count); |
s1 |
integer source vector used for the operation |
count |
8-bit immediate used for the operation |
Performs a logical shift of bits in the individual data elements (16-bit word, 32-bit doubleword, or 64-bit quadword) in source vector s1 to the right by the number of bits specified in count. The empty low-order bytes are cleared (set to all '0'). If the value specified by count is greater than 15/31/63 (depending on the intrinsic being used), the destination vector is set to all '0'. The count argument is an 8-bit immediate.
Result of the right-shift operation.