11 references to AbsDecimalIeee754
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (8)
3220TValue ax = AbsDecimalIeee754<TDecimal, TValue>(x); 3221TValue ay = AbsDecimalIeee754<TDecimal, TValue>(y); 3240TValue ax = AbsDecimalIeee754<TDecimal, TValue>(x); 3241TValue ay = AbsDecimalIeee754<TDecimal, TValue>(y); 3260TValue ax = AbsDecimalIeee754<TDecimal, TValue>(x); 3261TValue ay = AbsDecimalIeee754<TDecimal, TValue>(y); 3280TValue ax = AbsDecimalIeee754<TDecimal, TValue>(x); 3281TValue ay = AbsDecimalIeee754<TDecimal, TValue>(y);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1106public static Decimal128 Abs(Decimal128 value) => new Decimal128(Number.AbsDecimalIeee754<Decimal128, UInt128>(new UInt128(value._upper, value._lower)));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1117public static Decimal32 Abs(Decimal32 value) => new Decimal32(Number.AbsDecimalIeee754<Decimal32, uint>(value._value));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1110public static Decimal64 Abs(Decimal64 value) => new Decimal64(Number.AbsDecimalIeee754<Decimal64, ulong>(value._value));