3 implementations of ExponentBias
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
1831
static int IDecimalIeee754ParseAndFormatInfo<Decimal128, UInt128>.
ExponentBias
=> ExponentBias;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
1799
static int IDecimalIeee754ParseAndFormatInfo<Decimal32, uint>.
ExponentBias
=> ExponentBias;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
1793
static int IDecimalIeee754ParseAndFormatInfo<Decimal64, ulong>.
ExponentBias
=> ExponentBias;
4 references to ExponentBias
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (4)
90
return new DecodedDecimalIeee754<TValue>(signed, biasedExponent - TDecimal.
ExponentBias
, significand);
493
uint biasedExponent = (uint)(exponent + TDecimal.
ExponentBias
);
552
uint biasedExponent = (uint)(decoded.UnbiasedExponent + TDecimal.
ExponentBias
);
619
int unbiasedExponent = (int)((exponentHigh << exponentContinuationBits) | exponentLow) - TDecimal.
ExponentBias
;