terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Multiply() [2/2]

static void Mono.Math.BigInteger.Kernel.Multiply ( uint[] x,
uint xOffset,
uint xLen,
uint[] y,
uint yOffset,
uint yLen,
uint[] d,
uint dOffset )
inlinestatic

Definition at line 1035 of file BigInteger.cs.

1036 {
1037 if (x != null)
1038 {
1039 if (y == null)
1040 {
1041 return;
1042 }
1043 }
1044 else if (y == null)
1045 {
1046 if (d != null)
1047 {
1048 return;
1049 }
1050 return;
1051 }
1052 if (d == null)
1053 {
1054 return;
1055 }
1056 }