7 references to _amount
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\TensorPrimitives.Rotate.cs (7)
47public T Invoke(T x) => T.RotateLeft(x, _amount); 48public Vector128<T> Invoke(Vector128<T> x) => (x << _amount) | (x >>> ((sizeof(T) * 8) - _amount)); 49public Vector256<T> Invoke(Vector256<T> x) => (x << _amount) | (x >>> ((sizeof(T) * 8) - _amount)); 50public Vector512<T> Invoke(Vector512<T> x) => (x << _amount) | (x >>> ((sizeof(T) * 8) - _amount));