7 references to _amount
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorPrimitives.Rotate.cs (7)
60
public T Invoke(T x) => T.RotateRight(x,
_amount
);
61
public Vector128<T> Invoke(Vector128<T> x) => (x >>>
_amount
) | (x << ((sizeof(T) * 8) -
_amount
));
62
public Vector256<T> Invoke(Vector256<T> x) => (x >>>
_amount
) | (x << ((sizeof(T) * 8) -
_amount
));
63
public Vector512<T> Invoke(Vector512<T> x) => (x >>>
_amount
) | (x << ((sizeof(T) * 8) -
_amount
));