2 writes to m_values
mscorlib (2)
system\runtime\serialization\objectmanager.cs (2)
1653
m_values
= new long[startingSize];
1716
m_values
= temp;
10 references to m_values
mscorlib (10)
system\runtime\serialization\objectmanager.cs (10)
1657
if (m_totalItems==
m_values
.Length) {
1660
m_values
[m_totalItems++]=value;
1675
while (++m_currentItem < m_totalItems &&
m_values
[m_currentItem]==-1) {
1686
Contract.Assert(
m_values
[m_currentItem]!=-1, "[LongList.Current]m_values[m_currentItem]!=-1");
1687
return
m_values
[m_currentItem];
1694
if (
m_values
[i]==value)
1700
m_values
[i] = -1;
1705
BCLDebug.Trace("SER", "[LongList.EnlargeArray]Enlarging array of size ",
m_values
.Length);
1706
int newLength =
m_values
.Length*2;
1715
Array.Copy(
m_values
, temp, m_count);