17 references to UInt32Powers10
System.Private.CoreLib (17)
src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (17)
1026low64 = Math.BigMul((uint)low64, UInt32Powers10[scale]); 1038power = UInt32Powers10[scale]; 1051power = UInt32Powers10[scale]; 1079power = UInt32Powers10[scale]; 1287uint pwr = UInt32Powers10[-scale]; 1371uint power = scale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[scale]; 1645result.Low64 = Math.BigMul(mant, UInt32Powers10[power]); 1653ulong low64 = Math.BigMul(mant, UInt32Powers10[power - 18]); 1658ulong low64 = Math.BigMul(mant, UInt32Powers10[power - 9]); 1805uint pow10 = UInt32Powers10[power]; 2005power = UInt32Powers10[curScale]; 2083power = UInt32Powers10[curScale]; 2154power = UInt32Powers10[curScale]; 2239uint power = scale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[scale]; 2262uint power = iCurScale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[iCurScale]; 2320uint power = scale <= -MaxInt32Scale ? TenToPowerNine : UInt32Powers10[-scale]; 2432power = UInt32Powers10[(int)scale];