3 writes to _removeIndex
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (3)
src\Shared\runtime\Http2\Hpack\DynamicTable.cs (3)
91
_removeIndex
= 0;
128
if (++
_removeIndex
== _buffer.Length)
130
_removeIndex
= 0;
3 references to _removeIndex
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (3)
src\Shared\runtime\Http2\Hpack\DynamicTable.cs (3)
84
int headCount = Math.Min(_buffer.Length -
_removeIndex
, _count);
87
Array.Copy(_buffer,
_removeIndex
, newBuffer, 0, headCount);
122
ref HeaderField field = ref _buffer[
_removeIndex
];