13 references to UInt32Powers10
System.Private.CoreLib (13)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (13)
1021low64 = Math.BigMul((uint)low64, UInt32Powers10[scale]); 1033power = UInt32Powers10[scale]; 1046power = UInt32Powers10[scale]; 1075power = UInt32Powers10[scale]; 1297uint pwr = UInt32Powers10[-scale]; 1395uint power = (uint)scale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[scale]; 1981power = UInt32Powers10[curScale]; 2059power = UInt32Powers10[curScale]; 2130power = UInt32Powers10[curScale]; 2211uint power = (uint)scale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[scale]; 2233uint power = (uint)iCurScale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[iCurScale]; 2318uint power = scale <= -MaxInt32Scale ? TenToPowerNine : UInt32Powers10[-scale]; 2435power = UInt32Powers10[(int)scale];