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