2 writes to _removeIndex
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (2)
src\Shared\runtime\Http2\Hpack\DynamicTable.cs (2)
90
_removeIndex
= 0;
110
_removeIndex
= (_removeIndex + 1) % _buffer.Length;
4 references to _removeIndex
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (4)
src\Shared\runtime\Http2\Hpack\DynamicTable.cs (4)
83
int headCount = Math.Min(_buffer.Length -
_removeIndex
, _count);
86
Array.Copy(_buffer,
_removeIndex
, newBuffer, 0, headCount);
105
ref HeaderField field = ref _buffer[
_removeIndex
];
110
_removeIndex = (
_removeIndex
+ 1) % _buffer.Length;