6 references to NaNMaskUpper
System.Private.CoreLib (6)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (6)
1116
public static bool IsInfinity(Decimal128 value) => (value._upper &
NaNMaskUpper
) == InfinityMaskUpper;
1121
public static bool IsNaN(Decimal128 value) => (value._upper &
NaNMaskUpper
) ==
NaNMaskUpper
;
1131
public static bool IsNegativeInfinity(Decimal128 value) => (value._upper & (SignMaskUpper |
NaNMaskUpper
)) == NegativeInfinityValue.Upper;
1141
public static bool IsPositiveInfinity(Decimal128 value) => (value._upper & (SignMaskUpper |
NaNMaskUpper
)) == PositiveInfinityValue.Upper;
1821
static UInt128 IDecimalIeee754ParseAndFormatInfo<Decimal128, UInt128>.NaNMask => new UInt128(
NaNMaskUpper
, 0);