4 writes to _tail
System (4)
compmod\system\collections\generic\queue.cs (4)
65
_tail
= 0;
120
_tail
= 0;
208
_tail
= (_tail + 1) % _array.Length;
326
_tail
= (_size == capacity) ? 0 : _size;
8 references to _tail
System (8)
compmod\system\collections\generic\queue.cs (8)
112
if (_head <
_tail
)
116
Array.Clear(_array, 0,
_tail
);
207
_array[
_tail
] = item;
208
_tail = (
_tail
+ 1) % _array.Length;
300
if (_head <
_tail
) {
304
Array.Copy(_array, 0, arr, _array.Length - _head,
_tail
);
316
if (_head <
_tail
) {
320
Array.Copy(_array, 0, newarray, _array.Length - _head,
_tail
);