10 references to ExponentBias
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Double.cs (6)
134
return (short)(BiasedExponent -
ExponentBias
);
1524
if ((xExp > (
ExponentBias
+ 500)) || (yExp > (
ExponentBias
+ 500)))
1532
else if ((xExp < (
ExponentBias
- 500)) || (yExp < (
ExponentBias
- 500)))
2296
static int IBinaryFloatParseAndFormatInfo<double>.ExponentBias =>
ExponentBias
;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (4)
625
TVectorUInt64 expBiasP500 = TVectorUInt64.Create(double.
ExponentBias
+ 500);
631
TVectorUInt64 expBiasM500 = TVectorUInt64.Create(double.
ExponentBias
- 500);
803
TVectorUInt64 exponent = ((bits >> double.BiasedExponentShift) & TVectorUInt64.Create(double.ShiftedBiasedExponentMask)) - TVectorUInt64.Create(double.
ExponentBias
);
849
TVectorUInt64 exponent = ((bits >> double.BiasedExponentShift) & TVectorUInt64.Create(double.ShiftedBiasedExponentMask)) - TVectorUInt64.Create(double.
ExponentBias
);