13 references to EndOfList
System.Private.Xml.Linq (13)
System\Xml\Linq\XHashtable.cs (13)
176if (entryIdx == EndOfList) 179entryIdx = Interlocked.CompareExchange(ref _buckets[bucketIdx], FullList, EndOfList); 183while (entryIdx > EndOfList) 189if (_entries[entryIdx].Next == EndOfList) 192entryIdx = Interlocked.CompareExchange(ref _entries[entryIdx].Next, FullList, EndOfList); 200Debug.Assert(entryIdx == EndOfList, "Resize() should only be called by one thread"); 226while (entryIdx > EndOfList) 304entryIndex = Interlocked.CompareExchange(ref _buckets[hashCode & (_buckets.Length - 1)], newEntry, EndOfList); 306entryIndex = Interlocked.CompareExchange(ref _entries[entryIndex].Next, newEntry, EndOfList); 312if (entryIndex <= EndOfList) 313return entryIndex == EndOfList; 344while (currentIndex > EndOfList) 356if (_entries[currentIndex].Next > EndOfList)