_kshiftli_mask16
Classification
Header File
Instruction
KSHIFTLW k, k, imm8
Synopsis
_kshiftli_mask16(__mmask16 a, unsigned int count);
Description
Shift the bits of 16-bit mask "a" left by "count" while shifting in zeros, and store the least significant 16 bits of the result in "k".
Operation
k[MAX:0] := 0
IF count[7:0] <= 15
k[15:0] := a[15:0] << count[7:0]
FI