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)
158
if (
_lastBufferIndex
== _lastBuffer.Length)
317
if ((_length <= MaxStringBuilderLength) || (_buffersCount == 1 &&
_lastBufferIndex
== 0))
374
if ((_length <= MaxStringBuilderLength) || (_buffersCount == 1 &&
_lastBufferIndex
== 0))
456
if (
_lastBufferIndex
>= _lastBuffer.Length)
462
int free = _lastBuffer.Length -
_lastBufferIndex
;
468
fixed (char* pLastBuffer = &_lastBuffer[
_lastBufferIndex
])