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