3 writes to _offset
System.Collections.Concurrent (3)
System\Collections\Concurrent\PartitionerStatic.cs (3)
1421
_offset
= startIndex - 1;
1450
_offset
++;
1461
_offset
= _endIndex + 1;
11 references to _offset
System.Collections.Concurrent (11)
System\Collections\Concurrent\PartitionerStatic.cs (11)
1448
if (
_offset
< _endIndex)
1523
if (
_offset
< _startIndex)
1528
Debug.Assert(
_offset
>= _startIndex &&
_offset
<= _endIndex);
1529
return (new KeyValuePair<long, TSource>(
_offset
, _list[
_offset
]));
1580
if (
_offset
< _startIndex)
1585
Debug.Assert(
_offset
>= _startIndex &&
_offset
<= _endIndex);
1586
return (new KeyValuePair<long, TSource>(
_offset
, _array[
_offset
]));