13 references to InvokeSpanIntoSpan
System.Numerics.Tensors (13)
System\Numerics\Tensors\netcore\TensorPrimitives.RootN.cs (1)
24InvokeSpanIntoSpan(x, new RootNOperator<T>(n), destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Rotate.cs (2)
23InvokeSpanIntoSpan(x, new RotateLeftOperator<T>(rotateAmount), destination); 38InvokeSpanIntoSpan(x, new RotateRightOperator<T>(rotateAmount), destination);
System\Numerics\Tensors\netcore\TensorPrimitives.Round.cs (6)
124InvokeSpanIntoSpan(x, new RoundFallbackOperator<T>(digits, mode), destination); 137InvokeSpanIntoSpan(x, new MultiplyRoundDivideOperator<T, RoundToEvenOperator<T>>(power10), destination); 141InvokeSpanIntoSpan(x, new MultiplyRoundDivideOperator<T, RoundAwayFromZeroOperator<T>>(power10), destination); 145InvokeSpanIntoSpan(x, new MultiplyRoundDivideOperator<T, TruncateOperator<T>>(power10), destination); 149InvokeSpanIntoSpan(x, new MultiplyRoundDivideOperator<T, FloorOperator<T>>(power10), destination); 153InvokeSpanIntoSpan(x, new MultiplyRoundDivideOperator<T, CeilingOperator<T>>(power10), destination);
System\Numerics\Tensors\netcore\TensorPrimitives.ScaleB.cs (1)
23InvokeSpanIntoSpan(x, new ScaleBOperator<T>(n), destination);
System\Numerics\Tensors\netcore\TensorPrimitives.ShiftLeft.cs (3)
23InvokeSpanIntoSpan(x, new ShiftLeftOperator<T>(shiftAmount), destination); 38InvokeSpanIntoSpan(x, new ShiftRightArithmeticOperator<T>(shiftAmount), destination); 53InvokeSpanIntoSpan(x, new ShiftRightLogicalOperator<T>(shiftAmount), destination);