Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Square() [2/2]

static unsafe uint[] System.Numerics.BigIntegerCalculator.Square ( uint[] value)
inlinestatic

Definition at line 1139 of file BigIntegerCalculator.cs.

1140 {
1141 uint[] array = new uint[value.Length + value.Length];
1142 fixed (uint* value2 = value)
1143 {
1144 fixed (uint* bits = array)
1145 {
1146 Square(value2, value.Length, bits, array.Length);
1147 }
1148 }
1149 return array;
1150 }
static unsafe uint[] Square(uint[] value)

References System.array, System.Numerics.BigIntegerCalculator.Square(), and System.value.

Referenced by System.Numerics.BigInteger.operator*(), System.Numerics.BigIntegerCalculator.Square(), System.Numerics.BigIntegerCalculator.Square(), and System.Numerics.BigIntegerCalculator.BitsBuffer.SquareSelf().