1 write to keys
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Array.cs (1)
2467this.keys = keys;
25 references to keys
System.Private.CoreLib (25)
src\libraries\System.Private.CoreLib\src\System\Array.cs (25)
2476if (comparer.Compare(keys.GetValue(a), keys.GetValue(b)) > 0) 2478object? key = keys.GetValue(a); 2479keys.SetValue(keys.GetValue(b), a); 2480keys.SetValue(key, b); 2493object? t1 = keys.GetValue(i); 2494keys.SetValue(keys.GetValue(j), i); 2495keys.SetValue(t1, j); 2586object? pivot = keys.GetValue(mid); 2592while (comparer.Compare(keys.GetValue(++left), pivot) < 0) ; 2593while (comparer.Compare(pivot, keys.GetValue(--right)) < 0) ; 2626object? d = keys.GetValue(lo + i - 1); 2632if (child < n && comparer.Compare(keys.GetValue(lo + child - 1), keys.GetValue(lo + child)) < 0) 2637if (!(comparer.Compare(d, keys.GetValue(lo + child - 1)) < 0)) 2640keys.SetValue(keys.GetValue(lo + child - 1), lo + i - 1); 2644keys.SetValue(d, lo + i - 1); 2656t = keys.GetValue(i + 1); 2659while (j >= lo && comparer.Compare(t, keys.GetValue(j)) < 0) 2661keys.SetValue(keys.GetValue(j), j + 1); 2666keys.SetValue(t, j + 1);