16 references to TenToPowerNine
System.Private.CoreLib (16)
src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (16)
695power = DivByConst(result, hiRes, out quotient, out remainder, TenToPowerNine); 1030low64 = Math.BigMul((uint)low64, TenToPowerNine); 1036power = TenToPowerNine; 1049power = TenToPowerNine; 1077power = TenToPowerNine; 1371uint power = scale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[scale]; 1659ulong hi64 = Math.BigMul(TenToPowerNine, low64, out low64); 2239uint power = scale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[scale]; 2262uint power = iCurScale >= MaxInt32Scale ? TenToPowerNine : UInt32Powers10[iCurScale]; 2265if (power != TenToPowerNine) 2320uint power = scale <= -MaxInt32Scale ? TenToPowerNine : UInt32Powers10[-scale]; 2399const uint divisor = TenToPowerNine; 2509ulong div64 = high64 / TenToPowerNine; 2513ulong num = ((high64 - (uint)div64 * TenToPowerNine) << 32) + value.ulo; 2514uint div = (uint)(num / TenToPowerNine); 2516return (uint)num - div * TenToPowerNine;