2 writes to _span
Microsoft.AspNetCore.Http.Abstractions (2)
src\Shared\ValueStringBuilder\ValueListBuilder.cs (2)
21_span = initialSpan; 95_span = _arrayFromPool = array;
10 references to _span
Microsoft.AspNetCore.Http.Abstractions (10)
src\Shared\ValueStringBuilder\ValueListBuilder.cs (10)
32Span<T> span = _span; 47Debug.Assert(_pos == _span.Length); 50_span[pos] = item; 54public ReadOnlySpan<T> AsSpan() => _span.Slice(0, _pos); 78int nextCapacity = Math.Max(_span.Length != 0 ? _span.Length * 2 : 4, _span.Length + additionalCapacityRequired); 88nextCapacity = Math.Max(Math.Max(_span.Length + 1, ArrayMaxLength), _span.Length); 92_span.CopyTo(array);