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