3 references to SameQuantumDecimalIeee754
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1101
public static bool HaveSameQuantum(Decimal128 x, Decimal128 y) => Number.
SameQuantumDecimalIeee754
<Decimal128, UInt128>(new UInt128(x._upper, x._lower), new UInt128(y._upper, y._lower));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1112
public static bool HaveSameQuantum(Decimal32 x, Decimal32 y) => Number.
SameQuantumDecimalIeee754
<Decimal32, uint>(x._value, y._value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1105
public static bool HaveSameQuantum(Decimal64 x, Decimal64 y) => Number.
SameQuantumDecimalIeee754
<Decimal64, ulong>(x._value, y._value);