18 references to DivRem
System.Private.CoreLib (15)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (5)
220(div, rem) = Math.DivRem(tmp, den); 225(div, rem) = Math.DivRem(tmp, den); 233(bufNum.Low64, rem) = Math.DivRem(tmp, den); 386(ulong quo64, bufNum.Low64) = Math.DivRem(num, den); 1416(low64, ulong remainder) = Math.DivRem(low64, power);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\TimeSpanFormat.cs (3)
137(totalSecondsRemaining, fraction64) = Math.DivRem((ulong)ticks, TimeSpan.TicksPerSecond); 181(totalMinutesRemaining, seconds) = Math.DivRem(totalSecondsRemaining, 60 /* seconds per minute */); 189(totalHoursRemaining, minutes) = Math.DivRem(totalMinutesRemaining, 60 /* minutes per hour */);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.BigInteger.cs (1)
488(digit, carry) = Math.DivRem(value, rhsValue);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (3)
2450(value, ulong remainder) = Math.DivRem(value, 100); 2489(value, remainder) = Math.DivRem(value, 100); 2496(value, remainder) = Math.DivRem(value, 10);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1742return Math.DivRem(value, power);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
887(highRes, leftUpper) = Math.DivRem(left._upper, divisor);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
285public static (ulong Quotient, ulong Remainder) DivRem(ulong left, ulong right) => Math.DivRem(left, right);
System.Runtime.Numerics (3)
System\Numerics\BigIntegerCalculator.Utils.cs (3)
167(ulong q, ulong r) = Math.DivRem(lo, (ulong)divisor); 181(ulong q_hi, ulong r1) = Math.DivRem(((ulong)hi << 32) | lo_hi, divisor); 182(ulong q_lo, ulong r2) = Math.DivRem((r1 << 32) | lo_lo, divisor);