7 references to MaximumFloatingPointConstantLength
System.Text.Json (7)
System\Text\Json\Serialization\Converters\Value\HalfConverter.cs (4)
15
private const int MaxUnescapedFormatLength = JsonConstants.
MaximumFloatingPointConstantLength
* JsonConstants.MaxExpansionFactorWhileEscaping;
177
if (reader.ValueLength > JsonConstants.
MaximumFloatingPointConstantLength
)
183
buffer = stackalloc byte[JsonConstants.
MaximumFloatingPointConstantLength
];
188
if (written > JsonConstants.
MaximumFloatingPointConstantLength
)
System\Text\Json\Serialization\Converters\Value\Ieee754FloatingPointConverter.cs (3)
25
private const int MaxEscapedNamedLiteralLength = JsonConstants.
MaximumFloatingPointConstantLength
* JsonConstants.MaxExpansionFactorWhileEscaping;
221
if (reader.ValueLength > JsonConstants.
MaximumFloatingPointConstantLength
)
227
buffer = stackalloc byte[JsonConstants.
MaximumFloatingPointConstantLength
];