4 references to PowersOf10
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.BigInteger.cs (1)
49private static ReadOnlySpan<ulong> Pow10Table => ulong.PowersOf10;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.DiyFp128DecimalReduce.cs (2)
202ulong multiplier = ulong.PowersOf10[chunk]; 286ulong divisor = ulong.PowersOf10[chunk];
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
300return value < PowersOf10[(int)approx] ? approx - 1 : approx;