4 references to DivideDecimalIeee754
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.Transcendental.cs (1)
428return DivideDecimalIeee754<TDecimal, TValue>(logX, logBase);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
404UInt128 result = Number.DivideDecimalIeee754<Decimal128, UInt128>(new UInt128(left._upper, left._lower), new UInt128(right._upper, right._lower));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
393return new Decimal32(Number.DivideDecimalIeee754<Decimal32, uint>(left._value, right._value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
396return new Decimal64(Number.DivideDecimalIeee754<Decimal64, ulong>(left._value, right._value));