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