3 implementations of G0ToGwPlus1ExponentMask
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1835
static UInt128 IDecimalIeee754ParseAndFormatInfo<Decimal128, UInt128>.
G0ToGwPlus1ExponentMask
=> new UInt128(0x7FFE_0000_0000_0000, 0);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1803
static uint IDecimalIeee754ParseAndFormatInfo<Decimal32, uint>.
G0ToGwPlus1ExponentMask
=> 0x7F80_0000;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1797
static ulong IDecimalIeee754ParseAndFormatInfo<Decimal64, ulong>.
G0ToGwPlus1ExponentMask
=> 0x7FE0_0000_0000_0000;
1 reference to G0ToGwPlus1ExponentMask
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (1)
76
biasedExponent = TDecimal.ConvertToExponent((decimalBits & TDecimal.
G0ToGwPlus1ExponentMask
) >> (TDecimal.NumberBitsSignificand + 3));