1 write to keys
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Array.cs (1)
2486this.keys = keys;
25 references to keys
System.Private.CoreLib (25)
src\libraries\System.Private.CoreLib\src\System\Array.cs (25)
2495if (comparer.Compare(keys.GetValue(a), keys.GetValue(b)) > 0) 2497object? key = keys.GetValue(a); 2498keys.SetValue(keys.GetValue(b), a); 2499keys.SetValue(key, b); 2512object? t1 = keys.GetValue(i); 2513keys.SetValue(keys.GetValue(j), i); 2514keys.SetValue(t1, j); 2605object? pivot = keys.GetValue(mid); 2611while (comparer.Compare(keys.GetValue(++left), pivot) < 0) ; 2612while (comparer.Compare(pivot, keys.GetValue(--right)) < 0) ; 2645object? d = keys.GetValue(lo + i - 1); 2651if (child < n && comparer.Compare(keys.GetValue(lo + child - 1), keys.GetValue(lo + child)) < 0) 2656if (!(comparer.Compare(d, keys.GetValue(lo + child - 1)) < 0)) 2659keys.SetValue(keys.GetValue(lo + child - 1), lo + i - 1); 2663keys.SetValue(d, lo + i - 1); 2675t = keys.GetValue(i + 1); 2678while (j >= lo && comparer.Compare(t, keys.GetValue(j)) < 0) 2680keys.SetValue(keys.GetValue(j), j + 1); 2685keys.SetValue(t, j + 1);