Lines Matching refs:_nbytes
3512 #define SL(_hi128,_lo128,_nbytes) \ argument
3513 ( (_nbytes) == 0 \
3515 : triop(Iop_SliceV128,(_hi128),(_lo128),mkU8(_nbytes)) )
3516 #define ROR(_v128,_nbytes) \ argument
3517 SL((_v128),(_v128),(_nbytes))
3518 #define ROL(_v128,_nbytes) \ argument
3519 SL((_v128),(_v128),16-(_nbytes))
3520 #define SHR(_v128,_nbytes) \ argument
3521 binop(Iop_ShrV128,(_v128),mkU8(8*(_nbytes)))
3522 #define SHL(_v128,_nbytes) \ argument
3523 binop(Iop_ShlV128,(_v128),mkU8(8*(_nbytes)))