5 writes to _lastBufferIndex
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\BufferBuilder.cs (5)
162_lastBuffer[_lastBufferIndex++] = value; 310_lastBufferIndex = 0; 474_lastBufferIndex += copyCount; 507_lastBufferIndex = 0; 558_lastBufferIndex = newLastIndex;
6 references to _lastBufferIndex
dotnet-svcutil-lib (6)
FrameworkFork\Microsoft.Xml\Xml\BufferBuilder.cs (6)
158if (_lastBufferIndex == _lastBuffer.Length) 317if ((_length <= MaxStringBuilderLength) || (_buffersCount == 1 && _lastBufferIndex == 0)) 374if ((_length <= MaxStringBuilderLength) || (_buffersCount == 1 && _lastBufferIndex == 0)) 456if (_lastBufferIndex >= _lastBuffer.Length) 462int free = _lastBuffer.Length - _lastBufferIndex; 468fixed (char* pLastBuffer = &_lastBuffer[_lastBufferIndex])