1 write to keys
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Array.cs (1)
2854this.keys = keys;
25 references to keys
System.Private.CoreLib (25)
src\libraries\System.Private.CoreLib\src\System\Array.cs (25)
2863if (comparer.Compare(keys.GetValue(a), keys.GetValue(b)) > 0) 2865object? key = keys.GetValue(a); 2866keys.SetValue(keys.GetValue(b), a); 2867keys.SetValue(key, b); 2880object? t1 = keys.GetValue(i); 2881keys.SetValue(keys.GetValue(j), i); 2882keys.SetValue(t1, j); 2973object? pivot = keys.GetValue(mid); 2979while (comparer.Compare(keys.GetValue(++left), pivot) < 0) ; 2980while (comparer.Compare(pivot, keys.GetValue(--right)) < 0) ; 3013object? d = keys.GetValue(lo + i - 1); 3019if (child < n && comparer.Compare(keys.GetValue(lo + child - 1), keys.GetValue(lo + child)) < 0) 3024if (!(comparer.Compare(d, keys.GetValue(lo + child - 1)) < 0)) 3027keys.SetValue(keys.GetValue(lo + child - 1), lo + i - 1); 3031keys.SetValue(d, lo + i - 1); 3043t = keys.GetValue(i + 1); 3046while (j >= lo && comparer.Compare(t, keys.GetValue(j)) < 0) 3048keys.SetValue(keys.GetValue(j), j + 1); 3053keys.SetValue(t, j + 1);