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