5 writes to _size
System (5)
compmod\system\collections\generic\queue.cs (5)
66_size = 0; 79_size = 0; 121_size = 0; 209_size++; 244_size--;
22 references to _size
System (22)
compmod\system\collections\generic\queue.cs (22)
92get { return _size; } 113Array.Clear(_array, _head, _size); 140if (arrayLen - arrayIndex < _size) { 144int numToCopy = (arrayLen - arrayIndex < _size) ? (arrayLen - arrayIndex) : _size; 174if (arrayLen - index < _size) { 178int numToCopy = (arrayLen-index < _size) ? arrayLen-index : _size; 199if (_size == _array.Length) { 238if (_size == 0) 254if (_size == 0) 267int count = _size; 296T[] arr = new T[_size]; 297if (_size==0) 301Array.Copy(_array, _head, arr, 0, _size); 315if (_size > 0) { 317Array.Copy(_array, _head, newarray, 0, _size); 326_tail = (_size == capacity) ? 0 : _size; 332if( _size < threshold ) { 333SetCapacity(_size); 376if (_index == _q._size) {