3 writes to m_high
mscorlib (3)
system\Collections\Concurrent\ConcurrentQueue.cs (3)
694
m_high
= -1;
728
m_high
++;
797
newhigh = Interlocked.Increment(ref
m_high
);
6 references to m_high
mscorlib (6)
system\Collections\Concurrent\ConcurrentQueue.cs (6)
727
Contract.Assert(
m_high
< SEGMENT_SIZE - 1);
729
m_array[
m_high
] = value;
730
m_state[
m_high
].m_value = true;
743
Contract.Assert(
m_high
>= SEGMENT_SIZE - 1);
775
if (
m_high
>= SEGMENT_SIZE - 1)
944
return Math.Min(
m_high
, SEGMENT_SIZE - 1);