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