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