7 references to DivRem
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.DecCalc.cs (1)
1774(UInt128 quotient, UInt128 remainder) = UInt128.DivRem(numerator, denominator);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (2)
2729(UInt128 quotient, UInt128 remainder) = UInt128.DivRem(wide, power); 3531(magnitude, UInt128 digit) = UInt128.DivRem(magnitude, 10);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.Formatting.cs (1)
2838(value, UInt128 remainder) = UInt128.DivRem(value, divisor);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1766return UInt128.DivRem(value, power);
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (2)
1321=> DivRem(left, right).Quotient; 1362=> DivRem(left, right).Remainder;