13 references to EndOfList
System.Xml.Linq (13)
System\Xml\Linq\XLinq.cs (13)
680if (entryIdx == EndOfList) { 682entryIdx = Interlocked.CompareExchange(ref buckets[bucketIdx], FullList, EndOfList); 686while (entryIdx > EndOfList) { 691if (entries[entryIdx].Next == EndOfList) { 693entryIdx = Interlocked.CompareExchange(ref entries[entryIdx].Next, FullList, EndOfList); 700Debug.Assert(entryIdx == EndOfList, "Resize() should only be called by one thread"); 724while (entryIdx > EndOfList) { 807entryIndex = Interlocked.CompareExchange(ref buckets[hashCode & (buckets.Length - 1)], newEntry, EndOfList); 809entryIndex = Interlocked.CompareExchange(ref entries[entryIndex].Next, newEntry, EndOfList); 815if (entryIndex <= EndOfList) 816return entryIndex == EndOfList; 846while (currentIndex > EndOfList) { 856if (entries[currentIndex].Next > EndOfList) {