4 references to Segment
mscorlib (4)
system\Collections\Concurrent\ConcurrentQueue.cs (4)
68
m_head = m_tail = new
Segment
(0, this);
77
Segment 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
744
Segment newSegment = new
Segment
(m_index + 1, m_source); //m_index is Int64, we don't need to worry about overflow
757
Segment newSegment = new
Segment
(m_index + 1, m_source); //m_index is Int64, we don't need to worry about overflow