Lines Matching refs:_nbytes
3586 #define SL(_hi128,_lo128,_nbytes) \ argument
3587 ( (_nbytes) == 0 \
3589 : triop(Iop_SliceV128,(_hi128),(_lo128),mkU8(_nbytes)) )
3590 #define ROR(_v128,_nbytes) \ argument
3591 SL((_v128),(_v128),(_nbytes))
3592 #define ROL(_v128,_nbytes) \ argument
3593 SL((_v128),(_v128),16-(_nbytes))
3594 #define SHR(_v128,_nbytes) \ argument
3595 binop(Iop_ShrV128,(_v128),mkU8(8*(_nbytes)))
3596 #define SHL(_v128,_nbytes) \ argument
3597 binop(Iop_ShlV128,(_v128),mkU8(8*(_nbytes)))