2 writes to _values
System.Runtime.Serialization.Formatters (2)
System\Runtime\Serialization\ObjectManager.cs (2)
1459
_values
= new long[startingSize];
1520
_values
= temp;
9 references to _values
System.Runtime.Serialization.Formatters (9)
System\Runtime\Serialization\ObjectManager.cs (9)
1464
if (_totalItems ==
_values
.Length)
1468
_values
[_totalItems++] = value;
1478
while (++_currentItem < _totalItems &&
_values
[_currentItem] == -1) ;
1487
Debug.Assert(
_values
[_currentItem] != -1, "[LongList.Current]m_values[m_currentItem]!=-1");
1488
return
_values
[_currentItem];
1497
if (
_values
[i] == value)
1506
_values
[i] = -1;
1512
int newLength =
_values
.Length * 2;
1519
Array.Copy(
_values
, temp, _count);