2 overrides of MaxBinaryExponent
Microsoft.CodeAnalysis (2)
RealParser.cs (2)
248
public override int
MaxBinaryExponent
=> 127;
263
public override int
MaxBinaryExponent
=> 1023;
4 references to MaxBinaryExponent
Microsoft.CodeAnalysis (4)
RealParser.cs (4)
73
public int MinBinaryExponent => 1 -
MaxBinaryExponent
;
75
public int OverflowDecimalExponent => (
MaxBinaryExponent
+ 2 * NormalMantissaBits) / 3;
122
if (normalExponent > this.
MaxBinaryExponent
)
212
if (exponent > this.
MaxBinaryExponent
)