31 references to DivRem
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.DivRem.cs (1)
82public static (T, T) Invoke(T x, T y) => T.DivRem(x, y);
System.Private.CoreLib (29)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
272/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
701/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
275/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
290/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
287/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
320/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (14)
196(TValue quotient, TValue remainder) = TValue.DivRem(other.Significand, current.Significand); 301(TValue quotient, TValue remainder) = TValue.DivRem(right.Significand, TDecimal.Power10(diffExponent)); 1010(loRetained, TValue remainder) = TValue.DivRem(lo.Significand, TDecimal.Power10(droppedDigits)); 1553(TValue quotient, TValue remainder) = TValue.DivRem(a.Significand, divisor); 1581(TValue chunk, remainder) = TValue.DivRem(remainder, divisor); 1596(TValue stripped, TValue digit) = TValue.DivRem(quotient, ten); 1996(quotient, discarded) = TValue.DivRem(a.Significand, divisor); 2228(quotient, discarded) = TValue.DivRem(a.Significand, divisor); 2673(TValue quotient, TValue remainder) = TValue.DivRem(low, divisor); 2687(TValue q3, rem) = TValue.DivRem((rem * baseValue) + (high >> half), divisor); 2688(TValue q2, rem) = TValue.DivRem((rem * baseValue) + (high & lowMask), divisor); 2689(TValue q1, rem) = TValue.DivRem((rem * baseValue) + (low >> half), divisor); 2690(TValue q0, rem) = TValue.DivRem((rem * baseValue) + (low & lowMask), divisor); 2814(TValue rd, TValue rest) = TValue.DivRem(removed, TDecimal.Power10(dropCount - 1));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.Transcendental.cs (1)
576(TValue quotient, TValue remainder) = TValue.DivRem(significand, TDecimal.Power10(k));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\IBinaryInteger.cs (2)
30(TSelf quotient, TSelf remainder) = TSelf.DivRem(left, right); 114(TSelf quotient, TSelf remainder) = TSelf.DivRem(left, right);
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
278/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
772/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
269/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
285/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
284/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
316/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
3365/// <inheritdoc cref="IBinaryInteger{TSelf}.DivRem(TSelf, TSelf)" />