3 writes to m_offset
mscorlib (3)
system\collections\concurrent\PartitionerStatic.cs (3)
1480m_offset = startIndex - 1; 1509m_offset++; 1520m_offset = m_endIndex + 1;
11 references to m_offset
mscorlib (11)
system\collections\concurrent\PartitionerStatic.cs (11)
1507if (m_offset < m_endIndex) 1582if (m_offset < m_startIndex) 1587Contract.Assert(m_offset >= m_startIndex && m_offset <= m_endIndex); 1588return (new KeyValuePair<long, TSource>(m_offset, m_list[m_offset])); 1639if (m_offset < m_startIndex) 1644Contract.Assert(m_offset >= m_startIndex && m_offset <= m_endIndex); 1645return (new KeyValuePair<long, TSource>(m_offset, m_array[m_offset]));