10 references to ExponentBias
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Double.cs (6)
134
return (short)(BiasedExponent -
ExponentBias
);
1528
if ((xExp > (
ExponentBias
+ 500)) || (yExp > (
ExponentBias
+ 500)))
1536
else if ((xExp < (
ExponentBias
- 500)) || (yExp < (
ExponentBias
- 500)))
2300
static int IBinaryFloatParseAndFormatInfo<double>.ExponentBias =>
ExponentBias
;
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\VectorMath.cs (4)
626
TVectorUInt64 expBiasP500 = TVectorUInt64.Create(double.
ExponentBias
+ 500);
632
TVectorUInt64 expBiasM500 = TVectorUInt64.Create(double.
ExponentBias
- 500);
804
TVectorUInt64 exponent = ((bits >> double.BiasedExponentShift) & TVectorUInt64.Create(double.ShiftedBiasedExponentMask)) - TVectorUInt64.Create(double.
ExponentBias
);
850
TVectorUInt64 exponent = ((bits >> double.BiasedExponentShift) & TVectorUInt64.Create(double.ShiftedBiasedExponentMask)) - TVectorUInt64.Create(double.
ExponentBias
);