4 references to Segment
mscorlib (4)
system\Collections\Concurrent\ConcurrentQueue.cs (4)
68m_head = m_tail = new Segment(0, this); 77Segment localTail = new Segment(0, this);//use this local variable to avoid the extra volatile read/write. this is safe because it is only called from ctor 744Segment newSegment = new Segment(m_index + 1, m_source); //m_index is Int64, we don't need to worry about overflow 757Segment newSegment = new Segment(m_index + 1, m_source); //m_index is Int64, we don't need to worry about overflow